JavaScriptWeb SDK

對於 JavaScript,這裡是我們建議用於生成,持久化和檢索 UUID 的程式碼。這可以包含在一個函式中,可以直接從 PUBNUB.init 函式呼叫,而不是下面的兩步內聯解決方案。

// get/create/store UUID
var UUID = PUBNUB.db.get('session') || (function(){ 
    var uuid = PUBNUB.uuid(); 
    PUBNUB.db.set('session', uuid); 
    return uuid; 
})();

// init PUBNUB object with UUID value
var pubnub = PUBNUB.init({
    publish_key: pubKey,
    subscribe_key: subKey,
    uuid: UUID
});