gathertown / mod-spotify-as-status

a Gather mod which sets your status to your currently playing track on spotify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gather mod example: set status to Spotify

a Gather mod which sets your status to your currently playing track on spotify

check out the websocket API docs for more!

setup

prereq: have NodeJS and npm installed

run npm install

put your Gather API key, -spaceId, Spotify API credentials and -tokens in a file named api-key.ts like so:

export const API_KEY = "your-api-key-here";
export const SPACE_ID = "gatherSpaceId\\gatherSpaceName";
export const CLIENT_ID = "your-spotify-client-id";
export const CLIENT_SECRET = "your-spotify-client-secret";
export const ACCESS_TOKEN = "your-very-long-spotify-token-here";
export const REFRESH_TOKEN = "your-very-long-spotify-refresh-token-here";

running

npm run start

further information

About

a Gather mod which sets your status to your currently playing track on spotify

License:MIT License


Languages

Language:TypeScript 100.0%