Laravel 5 Pusher服务器无法按键查找应用程序

时间:2015-10-29 10:12:17

标签: laravel-5 pusher

我遇到的问题是,当我添加任务时,它不会触发事件。 我该如何解决这个问题? 除了如何解决websocket错误? 我正在使用Pusher来创建一个实时事件.. caption of the error message of the browser

1 个答案:

答案 0 :(得分:1)

图像显示您正在使用值为YOUR_APP_KEY的Pusher应用程序密钥。当您通过https://dashboard.pusher.com

登录时,需要将其更改为您为应用获取的应用密钥

如果您在Laravel中使用事件广播,则服务器的配置将根据http://laravel.com/docs/5.1/events#broadcast-configuration

config/broadcasting.php进行

如果您使用Pusher Laravel Bridge,则配置将在config/pusher.php

在这两种情况下,您都需要将Pusher应用程序密钥配置传递到刀片以便使用该值。或者 - 出于测试目的 - 您可以对密钥进行硬编码。

如果从Pusher收到4005错误消息,那么您的环境变量未正确传递,因为这意味着无法找到该应用程序。见https://stackoverflow.com/a/13802175/39904