程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Web實時消息後台服務器推送技術GoEasy(支持多語言)---附GoEasy web 推送實例,webgoeasy

Web實時消息後台服務器推送技術GoEasy(支持多語言)---附GoEasy web 推送實例,webgoeasy

編輯:關於PHP編程

Web實時消息後台服務器推送技術GoEasy(支持多語言)---附GoEasy web 推送實例,webgoeasy


越來越多的項目需要用到實時消息的推送與接收,怎樣實現最方便呢?我這裡推薦大家使用GoEasy, 它是一款第三方推送服務平台,使用它的API可以輕松搞定實時推送!

浏覽器兼容性:GoEasy推送 支持websocket 和polling兩種連接方式,從而可以支持IE6及其以上的所有版本,同時還支持其它浏覽器諸如Firefox, Chrome, Safari 等等。

支持不同的開發語言:    GoEasy推送 提供了Restful API接口,無論你的後台程序用的是哪種語言都可以通過Restful API來實現後台實時推送。如:Java, PHP, C#, Ruby, Python, C, C++, ASP.NET, Node.js...

支持後台及前台推送: 後台用Restful API, 前台用goeasy.js; 運用十分簡單!

 

Web實時消息後台服務器推送技術-GoEasy

 

下面我介紹一下使用GoEasy的步驟:

 

1. 你需要到goeasy官網上注冊一個賬號,並創建一個應用,應用創建好後系統會默認為它生成兩個key: publish key 和subscribe key

 

2. 前台實時訂閱及接收

    只需要引入goeasy.js,然後調用goeasy的subscribe方法訂閱一個channel即可,訂閱時無論是用publish key還是subscribe key都可以。通過subscribe的參數 onMessage的回調函數可以實時接收到消息。

 

3. 前台實時推送

    還是需要引入goeasy.js(如果該頁面已經引入了可不在引入),然後調用goeasy的publish方法向已訂閱的channel上推送消息即可,推送時只能用publish key。


4. 後台實時推送

     調用GoEasy Restful API, 用post方式訪問http://goeasy.io/goeasy/publish, 同時還需要帶上三個必要參數:

    appkey: publish key

    channel: 你訂閱了的channel

   content: 推送內容

 

就是這麼簡單。

下面我將之前寫的一個小實例貼出來,裡面用了Java script 在web頁面進行訂閱,推送,接收,以及取消訂閱的例子,裡面的appkey用的是goeasy官方的demo 的appkey.

    <html>  
    <head>  
    <title>GoEasy Test</title>  
      
    <script type="text/javascript" src="https://cdn.goeasy.io/goeasy.js"></script>  
    <script type="text/javascript">  
        if(typeof GoEasy !== 'undefined'){  
            var goEasy = new GoEasy({  
                appkey: 'ba821151-e043-4dfb-a954-c73744c8d323',  
                userId:"222",  
                username:"22",  
                onConnected:function(){  
                    console.log("Connect to GoEasy success.");  
                } ,  
                onDisconnected:function(){  
                    console.log("Disconnect to GoEasy server.");  
                } ,  
                onConnectFailed:function(error){  
                    console.log("Connect to GoEasy failed, error code: "+ error.code+" Error message: "+ error.content);  
                }  
            });  
        }  
                  
        subscribe();  
        function subscribe(){  
                 goEasy.subscribe({  
                    channel: 'notification',  
                    onMessage: function(message){  
                        console.log('Meessage received:'+message.content);  
                    },  
                    onSuccess:function(){  
      
                        console.log("Subscribe the Channel successfully.");  
      
                    },  
      
                    onFailed: function(error){  
      
                        console.log("Subscribe the Channel failed, error code: "+ error.code + " error message: "+ error.content);  
      
                    }  
      
                });  
      
        }  
                  
         function publishMessage(){  
              goEasy.publish({  
                    channel: 'notification',  
                    message: 'You received a new notification',  
                    onSuccess:function(){  
      
                        console.log("Publish message success.");  
      
                    },  
                    onFailed: function(error){  
      
                        console.log("Publish message failed, error code: "+ error.code +" Error message: "+ error.content);  
      
                    }  
                });  
           
         }  
                        
         function unsubscribe(){  
                    goEasy.unsubscribe({  
                        channel:"notification",  
                        onSuccess: function(){  
      
                            console.log("Cancel Subscription successfully.");  
      
                        },  
                        onFailed: function(error){  
      
                            console.log("Cancel the subscrition failed, error code: "+ error.code + "error message: "+ error.content);  
                        }  
      
                    });  
                }  
              
     </script>  
    </head>  
    <body>  
      <input type="button" value="publish" onclick="publishMessage()"/>  
      <input type="button" value="unsubscribe" onclick="unsubscribe()"/>  
      <input type="button" value="subscribe" onclick="subscribe()"/>  
    </body>  
    </html>  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved