Skip to content

okjuan/muze-radio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Muze Radio

A web app for discovering music using fine-grained controls. Deployed at okjuan.me/muze-radio, but not yet accesible to the public. (Need to get Spotify's extended quota.)

development notes

clear cache token

In devtools, go to Application > Storage > Local Storage > (URL where app is running e.g. http://localhost:xxxx) and delete the userAuthData and code_verifier entries.

expire cached token

function setTokenExpirationToNow() {
    var userAuthData = JSON.parse(localStorage.getItem('userAuthData'));
    userAuthData['expiresAt'] = new Date().getTime();
    localStorage.setItem('userAuthData', JSON.stringify(userAuthData))
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published