Skip to content

Instantly share code, notes, and snippets.

@Ahriana
Created February 12, 2020 13:10
Show Gist options
  • Save Ahriana/5a18ea1e637110a8a42933f309f9b4a4 to your computer and use it in GitHub Desktop.
Save Ahriana/5a18ea1e637110a8a42933f309f9b4a4 to your computer and use it in GitHub Desktop.
Twitch PubSub methods
LOCAL METHODS
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["onsite-notifications.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["chat_moderator_actions.CHANNEL_USER_ID."],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["user-subscribe-events-v1.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["presence.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["stream-change-v1.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["follows.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["user-bits-updates-v1.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["community-points-user-v1.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["user-properties-update.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["user-campaign-events.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["hype-train-events-v1.rewards.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["chatrooms-user-v1.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["friendship.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["whispers.CHANNEL_USER_ID"],"auth_token":"AUTH_TOKEN"}}
REMOTE METHODS
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["stream-chat-room-v1.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["video-playback-by-id.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["broadcast-settings-update.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["ads.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["community-points-channel-v1.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["extension-control.CHANNEL_ID"]}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["stream-change-by-channel.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["channel-squad-updates.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["channel-bounty-board-events.cta.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["channel-bit-events-public.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["raid.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["channel-cheer-events-public-v1.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["channel-sub-gifts-v1.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["channel-prime-gifting-status.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["pv-watch-party-events.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["ad-property-refresh.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["polls.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
// {"type":"LISTEN","nonce":"NONCE_BODY","data":{"topics":["hype-train-events-v1.CHANNEL_ID"],"auth_token":"AUTH_TOKEN"}}
@Ahriana
Copy link
Author

Ahriana commented Feb 12, 2020

wss://pubsub-edge.twitch.tv

5 min ping interval { type: 'PING' }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment