This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
Releases: pascalboucher/laravel-chatkit-api
Releases · pascalboucher/laravel-chatkit-api
v0.2.1
v0.2.0
In this version, I added the ability to access the jwt directly. It can be useful when working with pusher client SDKs since they often ask to provide a token provider
Here's a quick example on how you can get a token directly
Route::get('chatkit/api/get-token', function () {
$token = Chatkit::getToken($userId);
// or for sudo tokens
$token = Chatkit::getSudoToken($userId);
dd($token);
});
v0.1.0
Laravel chatkit api initial release