Static
Readonly
RequestExported RequestError constructor.
Static
Readonly
TokenExported Token constructor.
Static
Readonly
WebExported WebHookError constructor.
Returns a signature for given socket id and user data.
socket id
user data
authentication signature
Returns a signature for given socket id, channel and socket data.
socket id
channel name
Optional
data: objectadditional socket data
authorization signature
Optional
channel_Optional
shared_Builds a signed query string that can be used in a request to Pusher.
Optional
body?: stringrequest body
request method
Optional
params?: { query params
request path
signed query string
Makes a GET request to Pusher, handles the authentication.
Returns a promise resolving to a response, or rejecting to a RequestError.
Optional
params?: { query params
request path
Makes a POST request to Pusher, handles the authentication.
Returns a promise resolving to a response, or rejecting to a RequestError.
Optional
body?: unknownrequest body
Optional
params?: { query params
request path
Sends an event to a user.
Event name can be at most 200 characters long.
user id
event name
event data, objects are JSON-encoded
a promise resolving to a response, or rejecting to a RequestError.
Triggers an event.
Channel names can contain only characters which are alphanumeric, '_' or '-' and have to be at most 200 characters long.
Event name can be at most 200 characters long.
Returns a promise resolving to a response, or rejecting to a RequestError.
event name
Optional
data: unknownevent data, objects are JSON-encoded
Optional
params: { additional optional request body parameters
Optional
info?: stringa comma separate list of attributes to be returned in the response. Experimental, see https://pusher.com/docs/lab#experimental-program
Optional
socket_id of a socket that should not receive the event
Provides access to Pusher's REST API, WebHooks and authentication. Modified to work with React Native, source: https://github.com/pusher/pusher-http-node
Param: options
Param: options.host
API hostname
Param: options.useTLS
whether to use TLS
Param: options.encrypted
deprecated; renamed to
useTLS
Param: options.port
port, default depends on the scheme
Param: options.appId
application ID
Param: options.key
application key
Param: options.secret
application secret
Param: options.timeout
request timeout in milliseconds
Param: options.agent
http agent to use