├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── create_token.js ├── create_token.rb ├── music_token.py ├── package.json └── too-many-requests.p8 /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .env 4 | token.jwt 5 | package-lock.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/README.md -------------------------------------------------------------------------------- /create_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/create_token.js -------------------------------------------------------------------------------- /create_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/create_token.rb -------------------------------------------------------------------------------- /music_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/music_token.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/package.json -------------------------------------------------------------------------------- /too-many-requests.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelauimagineering/apple-music-token-generator/HEAD/too-many-requests.p8 --------------------------------------------------------------------------------