时间:2021-07-01 10:21:17 帮助过:26人阅读
var goEasy = new GoEasy({appkey: 'subscriber key'}); //这里我用的是subscriber key,因为在我的客户端我不需要推送任何消息,所以没有必要使用supper key goEasy.subscribe({ channel: 'csdnNotification', onMessage: function(message){ alert('Meessagereceived:'+message.content); //接收到推送的消息 } });
3. 前台推送及后台推送
3.1. 前台往相同channel上推送
在引入了goeasy.js的页面,直接调用goEasy. publish('csdnNotification', '您的好友222已上线'); 用法与订阅类似。
3.2. 后台往相同channel上推送. 用GoEasy提供的restful API实现
API url: goeasy.io/goeasy/publish
方式: Post
参数列表:
channel: 'csdnNotification' //与订阅的channel必须一致,否则客户端将收不到消息。因此我们也可以根据channel来控制哪些客户端可以接收。 appkey: 'supper key' //这里必须使用supper key content: 'blabla…..' //要推送的内容
希望对大家有帮助。
以上就是PHP基于websocket实现前台及后台实时推送的详细内容,更多请关注Gxl网其它相关文章!