For finding UserID, Tokens, and more see PiShock API Documentation.
JSON.stringify(["SUBSCRIBE", JSON.stringify(['1234-ping', '1234-log'])])
wss://broker.pishock.com/v2?Username={username}&ApiKey={apikey}
wss://broker.pishock.com/v2?UserId={userid}&Token={token}
Option 1 (Username + API Key) allows you to login via API credentials, with this option there is no timeout.
Option 2 (UserId + Token) allows you to login as website, with this option your login session will timeout after two (2) weeks.
wss://broker.pishock.com/?username={username}&key={apikey}&api=true
wss://broker.pishock.com/?username=user{userid}&key={token}
Option 1 (Username + API Key) allows you to login via API credentials, with this option there is no timeout.
Option 2 (UserId + Token) allows you to login as website, with this option your login session will timeout after two (2) weeks.
To ensure you are successfully connected to the broker, you can use the following command:
{ "Operation":"PING" }
{ "ErrorCode":null, "IsError":false, "Message":"PONG", "OriginalCommand":"PING" }
[ 'PING' ]
{ "Command":"PING", "Payload":[ "PONG" ] }
Each device has 2 channels you can subscribe to, ping
and log
. You can subscribe to these channels using one of the following methods:
{ "Operation": "SUBSCRIBE", "Targets":["{clientid1}-ping","{clientid1}-log", "{clientid2}-ping", "{clientid2}-log"] }
{ "ErrorCode":null,"IsError":false,"Message":"{clientid1}-ping subscribed to.","OriginalCommand":"Original Request JSON" }
[’SUBSCRIBE’, [’{clientid1}-ping’, ’{clientid1}-log’, ’{clientid2}-ping’, ’{clientid2}-log’]]
{"Command":"SUBSCRIBE","Payload":["OK"]}
{ "Operation": "UNSUBSCRIBE", "Targets":[ "*" ] }
{ "Operation": "UNSUBSCRIBE", "Targets":[ "{clientid1}-ping","{clientid1}-log" ] }
[ 'UNSUBSCRIBE', ["*"] ]
[ 'UNSUBSCRIBE', ["{clientid1}-ping","{clientid1}-log"] ]
{
"Operation": "PUBLISH",
"PublishCommands":
[
{
"Target": "channelhere", //for example c{clientId}-ops or c{clientId}-sops-{sharecode}
"Body":
{
"id": "<shocker.id>",
"m": "<mode>", // 'v', 's', 'b', or 'e'
"i": "<intensity>", // Could be vibIntensity, shockIntensity or a randomized value
"d": "<duration>", // Calculated duration in milliseconds
"r": "<repeating>", // true or false, always set to true.
"l":
{
"u": "<userID>", // User ID from first step
"ty": "<type>", // 'sc' for ShareCode, 'api' for Normal
"w": "<warning_flag>", // true or false, if this is a warning vibrate, it affects the logs
"h": "<hold>", // true if button is held or continuous is being sent.
"o": "<origin>" // send to change the name shown in the logs.
}
}
}
]
}
{ "ErrorCode":null,"IsError":false,"Message":"Publish successful.","OriginalCommand":"Original Request JSON" }
Commands are sent in a similar format to Redis.
[
"PUBLISH",
[
[
'channelhere', //for example c{clientId}-ops or c{clientId}-sops-{sharecode}
{
"id": "<shocker.id>",
"m": "<mode>", // 'v', 's', 'b', or 'e'
"i": "<intensity>", // Could be vibIntensity, shockIntensity or a randomized value
"d": "<duration>", // Calculated duration in milliseconds
"r": "<repeating>", // true or false, always set to true.
"l": {
"u": "<userID>", // User ID from first step
"ty": "<type>", // 'sc' for ShareCode, 'api' for Normal
"w": "<warning_flag>", // true or false, if this is a warning vibrate, it affects the logs
"h": "<hold>", // true if button is held or continuous is being sent.
"o": "<origin>" // send to change the name shown in the logs.
}
}
]
]
]
JSON.stringify([
"PUBLISH",
JSON.stringify([
[
'channelhere', //for example c{clientId}-ops or c{clientId}-sops-{sharecode}
JSON.stringify({
"id": "<shocker.id>",
"m": "<mode>", // 'v', 's', 'b', or 'e'
"i": "<intensity>", // Could be vibIntensity, shockIntensity or a randomized value
"d": "<duration>", // Calculated duration in milliseconds
"r": "<repeating>", // true or false, always set to true.
"l": {
"u": "<userID>", // User ID from first step
"ty": "<type>", // 'sc' for ShareCode, 'api' for Normal
"w": "<warning_flag>", // true or false, if this is a warning vibrate, it affects the logs
"h": "<hold>", // true if button is held or continuous is being sent.
"o": "<origin>" // send to change the name shown in the logs.
}
})
]
])
])
["PUBLISH","[[\"channelhere\",\"{\\\"id\\\":\\\"<shocker.id>\\\",\\\"m\\\":\\\"<mode>\\\",\\\"i\\\":\\\"<intensity>\\\",\\\"d\\\":\\\"<duration>\\\",\\\"r\\\":\\\"<repeating>\\\",\\\"l\\\":{\\\"u\\\":\\\"<userID>\\\",\\\"ty\\\":\\\"<type>\\\",\\\"w\\\":\\\"<warning_flag>\\\",\\\"h\\\":\\\"<hold>\\\",\\\"o\\\":\\\"<origin>\\\"}}\"]]"]
{"Command":"PUBLISH","Payload":["PUBLISH SUCCESS"]}