Skip to content
This repository has been archived by the owner on Sep 14, 2020. It is now read-only.

DisStreamChat/youtube-live-chat-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Youtube Live Chat API

  • Socket.io API wrapper around the YouTube live chat API.
  • Messages are stored in Mongo DB.

Socket Events

const socket = io('http://path-to-server');
// emitted when there are new messages, is an array of messages
socket.on('messages', (messages) => {
  console.log(messages);
});

Endpoints

  • Start listening for messages
    • GET /listen
      • Will start listening for chat messages and emitting socket events in for first live event found
      • Will return false if there are no live events
  • Get a list of all youtube events
    • GET /events
  • Get a list of all live chat messages
    • GET /messages
  • Filter messages by liveChatId (obtain id from events endpoint)
    • GET /messages?liveChatId=some-liveChatId-from-active-events-endpoint-to-filter-messages
  • Filter messages by some regex against the message
    • GET /messages?q=any-valid-regular-expression-to-filter-messages

Configuration

  • Copy .env.sample to .env and update accordingly

Required

Variables needed to listen for messages:

Variable Description
GOOGLE_API_KEY Google API Key, used to retrieve messages
YOUTUBE_CHANNEL_ID The channel to listen for messages

Extra

If you would like to send messages as well, the following variables are required:

Variable Description
GOOGLE_REFRESH_TOKEN Oauth refresh token
GOOGLE_CLIENT_ID Oauth client id
GOOGLE_CLIENT_SECRET Oauth client secret

Client

See the example-client for socket.io client usage.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 87.1%
  • HTML 12.9%