中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Laravel中怎么利用pusher推送消息

發布時間:2021-07-19 13:59:49 來源:億速云 閱讀:144 作者:Leah 欄目:編程語言

Laravel中怎么利用pusher推送消息,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

一.注冊pusher

1.注冊

https://pusher.com/

2.獲取key,密匙,app_id等

二.配置pusher

1.安裝pusher

composer require pusher/pusher-php-server

2.配置config/broadcasting.php

'default' => env('BROADCAST_DRIVER', 'pusher'),
....
'pusher' => [
            'driver' => 'pusher',
            'key' => env('PUSHER_KEY'),
            'secret' => env('PUSHER_SECRET'),
            'app_id' => env('PUSHER_APP_ID'),
            'options' => [
                'cluster' => 'ap1',
                'encrypted' => true
            ],
        ],
.....

三.建立事件

1.代碼如下:

<?php
 
namespace App\Events;
 
use App\Events\Event;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
 
class PusherEvent extends Event implements ShouldBroadcast
{
    use SerializesModels;
 
    public $info;
 
    /**
     * PusherEvent constructor.
     */
    public function __construct($info)
    {
        $this->info = $info;
    }
 
    /**
     * 指定廣播頻道(對應前端的頻道)
     * Get the channels the event should be broadcast on.
     *
     * @return array
     */
    public function broadcastOn()
    {
        return ['my-channel'];
    }
 
    /**
     * 指定廣播事件(對應前端的事件)
     * @return string
     */
    public function broadcastAs()
    {
        return 'my-event';
    }
 
    /**
     * 獲取廣播數據,默認是廣播的public屬性的數據
     */
    public function broadcastWith()
    {
        return ['info' => $this->info];
    }
}

2.廣播事件,并不需要監聽器;廣播事件需要繼承接口ShouldBroadcast

四.廣播

1.觸發事件

event(new \App\Events\PusherEvent('測試'));

2.前端代碼

<!DOCTYPE html>
<head>
  <title>Pusher Test</title>
  <script src="https://js.pusher.com/4.0/pusher.min.js"></script>
  <script>
 
    // Enable pusher logging - don't include this in production
    Pusher.logToConsole = true;
 
    var pusher = new Pusher('XXX', {
      cluster: 'ap1',
      encrypted: true
    });
 
    var channel = pusher.subscribe('my-channel');
    channel.bind('my-event', function(data) {
      alert(data.info);
    });
  </script>
</head>

ps:

1.pusher使用curl向https://pusher.com提交數據,所以你需要配置證書;否則提交會失敗

2.如果不配置證書,則需要設置curl的CURLOPT_SSL_VERIFYPEERCURLOPT_SSL_VERIFYHOST

vender/pusher/pusher-php-server/lib/Pusher.php中的trigger的

curl_setopt($ch, CURLOPT_POSTFIELDS, $post_value);

下面增加:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴山县| 高淳县| 吉木乃县| 福海县| 安新县| 武汉市| 彭州市| 弥渡县| 南丹县| 常德市| 松桃| 博兴县| 永安市| 阿瓦提县| 思南县| 亳州市| 霍林郭勒市| 海阳市| 江川县| 翁牛特旗| 六盘水市| 通州市| 长垣县| 顺平县| 丰镇市| 芦溪县| 丰宁| 神木县| 万载县| 桓台县| 天等县| 广西| 固安县| 扎赉特旗| 马公市| 兴安盟| 瓦房店市| 留坝县| 鹤壁市| 夏河县| 石门县|