gpt4 book ai didi

javascript - Laravel Pusher 前端未接收数据

转载 作者:太空宇宙 更新时间:2023-11-04 16:21:44 24 4
gpt4 key购买 nike

这是我第一次使用 Pusher。我正在尝试制作一个测试应用程序 Laravel 5.2 和 Pusher。

(https://pusher-community.github.io/real-time-laravel/)

按照上面的教程,我配置了 Laravel 并成功从 Pusher 调试控制台获取了“Channel”、“Event”和“Data”。

问题:当我尝试从 JavaScript 获取推送通知时遇到一些问题。

<script>
Pusher.log = function (msg) {
// console.log(msg);
};
var pusher = new Pusher("{{env("PUSHER_KEY")}}")
var channel = pusher.subscribe('test-channel');
channel.bind('test-event', function (data) {
// console.log(data);
});
</script>

1.

console.log(msg);*** 抛出这样的消息。

Pusher : State changed : initialized -> connecting

(index):10 Pusher : Connecting : {"transport":"ws","url":"ws://ws.pusherapp.com:80/app/78b26f324ef425bcd2ca?protocol=7&client=js&version=3.0.0&flash=false"}

(index):10 Pusher : Connecting : {"transport":"ws","url":"ws://ws.pusherapp.com:80/app/78b26f324ef425bcd2ca?protocol=7&client=js&version=3.0.0&flash=false"}
(index):1 WebSocket connection to 'ws://ws.pusherapp.com/app/78b26f324ef425bcd2ca?protocol=7&client=js&version=3.0.0&flash=false' failed: WebSocket is closed before the connection is established.
pusher.min.js:12 Pusher : Error : {"type":"WebSocketError","error":{"type":"PusherError","data":{"code":4000,"message":"App is encrypted (SSL only)"}}}b.warn @ pusher.min.js:12(anonymous function) @ pusher.min.js:12a.emit @ pusher.min.js:30(anonymous function) @ pusher.min.js:85b @ pusher.min.js:80s @ pusher.min.js:46l @ pusher.min.js:49(anonymous function) @ pusher.min.js:50(anonymous function) @ pusher.min.js:52c.finish @ pusher.min.js:77a.onClosed @ pusher.min.js:77a.emit @ pusher.min.js:30c.changeState @ pusher.min.js:59c.onClose @ pusher.min.js:58a.socket.onclose @ pusher.min.js:59

(index):10 Pusher : Error : {"type":"WebSocketError","error":{"type":"PusherError","data":{"code":4000,"message":"App is encrypted (SSL only)"}}}

(index):10 Pusher : Connecting : {"transport":"ws","url":"wss://ws.pusherapp.com:443/app/78b26f324ef425bcd2ca?protocol=7&client=js&version=3.0.0&flash=false"}

(index):10 Pusher : State changed : connecting -> connected

(index):10 Pusher : Event sent : {"event":"pusher:subscribe","data":{"channel":"test-channel"}}

(index):10 Pusher : Event recd : {"event":"pusher_internal:subscription_succeeded","data":{},"channel":"test-channel"}

(index):10 Pusher : No callbacks on test-channel for pusher:subscription_succeeded

2.

channel.bind('test-event', function (data) { 
console.log(data);
});

什么都不扔。

最佳答案

您的日志中有错误:

(index):10 Pusher : Error : {"type":"WebSocketError","error":{"type":"PusherError","data":{"code":4000,"message":"App is encrypted (SSL only)"}}}

您的 Pusher 应用程序似乎要求您在启用 SSL 的情况下进行连接。您可以在 Pusher 仪表板上找到此设置:

Pusher Dashboard encryption

要解决此问题,您需要像这样连接到 Pusher:

var pusher = new Pusher("{{env("PUSHER_KEY")}}", { encrypted: true })

关于javascript - Laravel Pusher 前端未接收数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40578240/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com