WebIMConfig.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /**
  2. * git do not control webim.config.js
  3. * everyone should copy webim.config.js to webim.config.js
  4. * and have their own configs.
  5. * In this way , others won't be influenced by this config while git pull.
  6. *
  7. */
  8. // for react native
  9. let location = {
  10. protocol: "https"
  11. };
  12. let config = {
  13. /*
  14. * XMPP server
  15. */
  16. // xmppURL: "wss://im-api-new-hsb.easemob.com/websocket",// websdk 3.0 server 沙箱(测试用)
  17. // xmppURL: "wss://im-api.easemob.com/ws", //小程序sdk 2.0 server
  18. // xmppURL: 'wss://im-api-wechat.easemob.com/websocket', //小程序3.0 server 线上 小程序和原生客户端使用这个
  19. // xmppURL: 'wss://im-api-v2-hsb-alipay.easemob.com/websocket', // 支付宝沙箱 (测试用)
  20. // xmppURL: 'wss://im-api-alipay.easemob.com/websocket', // 支付宝线上 支付宝小程序请使用这个地址
  21. /*
  22. * Backend REST API URL
  23. */
  24. // apiURL: (location.protocol === 'https:' ? 'https:' : 'http:') + '//a1.easemob.com',
  25. // ios must be https!!! by lwz
  26. apiURL: "https://a1.easemob.com",
  27. // apiURL: 'https://192.168.43.137:8080', // 支付宝测试
  28. // apiURL: (location.protocol === 'https:' ? 'https:' : 'http:') + '//172.17.3.155:8080',
  29. /*
  30. * Application AppKey
  31. */
  32. appkey: "1145230719209454#neihe",
  33. /*
  34. * Whether to use HTTPS '1177161227178308#xcx'
  35. * @parameter {Boolean} true or false
  36. */
  37. https: false,
  38. /*
  39. * isMultiLoginSessions
  40. * true: A visitor can sign in to multiple webpages and receive messages at all the webpages.
  41. * false: A visitor can sign in to only one webpage and receive messages at the webpage.
  42. */
  43. isMultiLoginSessions: false,
  44. /**
  45. * Whether to use window.doQuery()
  46. * @parameter {Boolean} true or false
  47. */
  48. isWindowSDK: false,
  49. /**
  50. * isSandBox=true: xmppURL: 'im-api.sandbox.easemob.com', apiURL: '//a1.sdb.easemob.com',
  51. * isSandBox=false: xmppURL: 'im-api.easemob.com', apiURL: '//a1.easemob.com',
  52. * @parameter {Boolean} true or false
  53. */
  54. isSandBox: false,
  55. /**
  56. * Whether to console.log in strophe.log()
  57. * @parameter {Boolean} true or false
  58. */
  59. isDebug: false,
  60. /**
  61. * will auto connect the xmpp server autoReconnectNumMax times in background when client is offline.
  62. * won't auto connect if autoReconnectNumMax=0.
  63. */
  64. autoReconnectNumMax: 2,
  65. /**
  66. * the interval secons between each atuo reconnectting.
  67. * works only if autoReconnectMaxNum >= 2.
  68. */
  69. autoReconnectInterval: 2,
  70. /**
  71. * webrtc supports WebKit and https only
  72. */
  73. isWebRTC: false,
  74. /*
  75. * Set to auto sign-in
  76. */
  77. isAutoLogin: true
  78. };
  79. export default config;