push
push copied to clipboard
使用官方的 js 插件
使用官方的 js 插件 怎么传参数
new Push({ url: 'ws://127.0.0.1:3131', // websocket地址 app_key: '2d4271d4d40e6f3571e8aa7ef79ebbcf', auth: '/plugin/webman/push/auth' // 订阅鉴权(仅限于私有频道) })
这几个参数对应的是 import Pusher from 'pusher-js'; const pusher = new Pusher(APP_KEY, { cluster: APP_CLUSTER, channelAuthorization: { endpoint: 'http://example.com/pusher/auth' }, });
有demo?