PubNub JavaScript SDK v4-历史


本文向大家介绍PubNub JavaScript SDK v4-历史,包括了PubNub JavaScript SDK v4-历史的使用技巧和注意事项,需要的朋友参考一下

示例

// 初始化pubnub对象
var pubnub = new PubNub({
    subscribeKey: "yourSubscribeKey",
    publishKey: "myPublishKey" // 可选的
})

// 接收最近的100条消息 
// 发布到频道
pubnub.history(
    {
        channel: 'channel1'
    },
    function (status, response) {
        // log status & response to browser console
        console.log("状态 : " + console.log(JSON.stringify(status));
        console.log("RESPONSE: " + console.log(JSON.stringify(response));
    }
);

// 这是回应的格式
[
    [array of returned messages],
    "firstMessageTimetoken",
    "lastMessageTimetoken"
]

// 回应的例子
[
    [{'price':10.02}, {'price':10.12}, {'price':10.08}, {'price':10.10}],
    "14691304969408991",
    "14691307326690522"
]