Skip to content

hjbdev/laravel-pusher-batch-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Pusher Batch Auth

Package to give support for dirkbonhomme/pusher-js-auth into Laravel.

Latest Version on Packagist Total Downloads

composer require hjbdev/laravel-pusher-batch-auth

Registers the /broadcasting/auth/batch route, send your auth requests there instead.

// routes/web.php
Route::pusherBatchAuth();

You may need to add an exemption in your app/Http/Middleware/VerifyCsrfToken.php for this route.

protected $except = [
    'broadcasting/auth/batch'
];

Example:

import Echo from 'laravel-echo';
import Pusher from 'pusher-js';
import PusherBatchAuthorizer from 'pusher-js-auth';

const echo = new Echo({
    broadcaster: 'pusher',
    client: new Pusher(process.env.MIX_PUSHER_APP_KEY, {
        authEndpoint: '/broadcasting/auth/batch',
        authorizer: PusherBatchAuthorizer,
        authDelay: 500,
        forceTLS: true,
        cluster: process.env.MIX_PUSHER_APP_CLUSTER,
    }),
});

About

A package to support the dirkbonhomme/pusher-js-auth npm package

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages