使用 React Native 和 Laravel 后端对 Pusher 进行身份验证

Posted

技术标签:

【中文标题】使用 React Native 和 Laravel 后端对 Pusher 进行身份验证【英文标题】:Authenticating Pusher using React Native and a Laravel Backend 【发布时间】:2018-08-09 22:48:34 【问题描述】:

我正在尝试使用以下 React Native 脚本对私人广播进行身份验证。

import React from 'react';
import  StyleSheet, Text, View  from 'react-native';
import Pusher from 'pusher-js/react-native';

export default class App extends React.Component 
  componentWillMount() 
    Pusher.logToConsole = true;
    var pusher = new Pusher('*********', 
      authEndpoint: 'http://app.pgm/api/authtest',
      cluster: 'eu',
      encrypted: true
    );

    const channel = pusher.subscribe('private-chat-1');

  

上面的内容被发布到下面的函数中,下面的函数在从 Postman 测试时返回一个身份验证令牌。但是,当我通过 React Native 运行应用程序时,我得到以下响应。

  public function pusher(Request $request)
        $pusher = new Pusher(config('broadcasting.connections.pusher.key'), config('broadcasting.connections.pusher.secret'), config('broadcasting.connections.pusher.app_id'));

        echo $pusher->socket_auth($request->channel_name, $request->socket_id);
  

[exp] Pusher:无法检索身份验证信息。 0客户端必须经过身份验证才能加入私人或在线频道。见:https://pusher.com/docs/authenticating_users [exp] Pusher : 在 private-chat-1 上没有回调 pusher:subscription_error

这让我认为 Laravel 没有收到帖子数据。我目前没有任何可以阻止请求的中间件。

谁能看出我哪里出错了?

【问题讨论】:

你找到解决办法了吗,我也遇到同样的问题 【参考方案1】:

我在PostmanReact Native 两端都运行良好。我使用了以下代码。就我而言,我没有使用密钥encrypted: true

我正在成功监听事件。

代码

    // Pusher Logging
    Pusher.logToConsole = true;
    
    // Initialization & Configuration
    const pusher = new Pusher('****************', 
      cluster: '***',
      authEndpoint:
        'http://domain/products/chat/public/api/authtest',
    );

    // Making Connection
    pusher.connection.bind('connected', function (data) 
      console.log(data.socket_id);
    );

    // Subscribe Channel
    var channel = pusher.subscribe('private-channel-name', (data) => 
      console.log('Subscribe Channel');
      console.log(data);
    );

    // Accessing Channel
    const channelInfo = pusher.channel('private-chatify');
    console.log('channel Info');
    console.log(channelInfo);

    // Listen Event
    channel.bind('yourevent', function (data) 
      console.log('An event was triggered with message');
      console.log(data);
      console.log(data.message);
    );

希望对你有帮助。

【讨论】:

以上是关于使用 React Native 和 Laravel 后端对 Pusher 进行身份验证的主要内容,如果未能解决你的问题,请参考以下文章

带有 Laravel 后端和 React Native 应用程序的 Facebook 和 JWT Auth

post 方法在 laravel 8 中无法使用 react native for android

向 Laravel Api 发出 POST 请求时,React Native 获取一个空数组

React Native图像保存到php(laravel)服务器

如何在 react-native 中定位移动应用的用户?

如何将 JSON 对象从 React Native 发送到 Laravel 服务器?