推手::[{"type":"PusherError","data":{"code":4009,"message":"Connection not authorized within timeout"}}]
Pusher : : [{"type":"PusherError","data":{"code":4009,"message":"Connection not authorized within timeout"}}]
我在 React native 中使用 Pusher。
正在尝试从调试控制台获取消息。
成功获取 2 条消息,并且在控制台中收到此消息后:
Pusher : : [{"type":"PusherError","data":{"code":4009,"message":"Connection not authorized within timeout"}}]
Pusher : : ["State changed","connected -> disconnected"]
Pusher : : [{"type":"WebSocketError","error":{"type":"PusherError","data":{"code":4009,"message":"Connection not authorized within timeout"}}}]
这是我的绑定:
channel.bind("Chat", function (data) {
var newArr = initialMessages.reverse();
var message = creteNewMessage(JSON.stringify(data));
newArr.push(message);
console.log(newArr);
});
没有消息到达。
您是否在 Pusher App 设置中开启了授权连接?启用后,所有连接都需要订阅私人或存在频道,如果没有发生,则连接将关闭。有关信息,请参阅 https://pusher.com/docs/channels/using_channels/authorized-connections。
您应该关闭此设置,或者订阅私人或状态频道。
我在 React native 中使用 Pusher。
正在尝试从调试控制台获取消息。
成功获取 2 条消息,并且在控制台中收到此消息后:
Pusher : : [{"type":"PusherError","data":{"code":4009,"message":"Connection not authorized within timeout"}}]
Pusher : : ["State changed","connected -> disconnected"]
Pusher : : [{"type":"WebSocketError","error":{"type":"PusherError","data":{"code":4009,"message":"Connection not authorized within timeout"}}}]
这是我的绑定:
channel.bind("Chat", function (data) {
var newArr = initialMessages.reverse();
var message = creteNewMessage(JSON.stringify(data));
newArr.push(message);
console.log(newArr);
});
没有消息到达。
您是否在 Pusher App 设置中开启了授权连接?启用后,所有连接都需要订阅私人或存在频道,如果没有发生,则连接将关闭。有关信息,请参阅 https://pusher.com/docs/channels/using_channels/authorized-connections。 您应该关闭此设置,或者订阅私人或状态频道。