Skip to content

pusher/pusher-channels-auth-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pusher Channels Example Auth Server

This project aims to demonstrate how to implement a Pusher authorization endpoint using the pusher-http-node library. There's no concept of users - a valid token is provided to every request - so this shouldn't be used in production.

Some Assembly Required

BEFORE you run this project you'll need an appId, appKey, appSecret and cluster for Pusher. You can get these from the keys tab of your pusher dashboard

Deploy to Heroku

You'll need to insert your appId, appKey, appSecret and cluster when deploying your app.

Deploy

Run It Locally

Make a copy of the .env.example file.

cp .env.example .env

Add your appId, appKey, appSecret and cluster to the newly created .env file.

When you have a .env file containing a valid APP_ID APP_KEY, APP_SECRET and CLUSTER you're ready to run.

yarn
yarn start

That's it. You can test everything works by sending a POST request to http://localhost:3030/pusher/auth

curl -X POST http://localhost:3030/pusher/auth \
  -H "Content-Type: application/json" \
  -d '{"socket_id": "100.100", "channel_name": "private-document"}'

Using E2E encryption

To test E2E encryption, generate a random 32 byte master key, base64 encode it and add it to your .env as ENCRYPTION_MASTER_KEY, then use a channel with an encrypted name prefix, e.g.

curl -X POST http://localhost:3030/pusher/auth \
  -H "Content-Type: application/json" \
  -d '{"socket_id": "100.100", "channel_name": "private-encrypted-document"}'

The response should contain an additional shared_secret key and value.

A suitable key can be generated like this:

openssl rand -base64 32

About

A simple server exposing a pusher auth endpoint

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published