Made with
:beforepseudo andbox-shadow. By Kaushalya Mandaliya.
A Pen by Kaushalya Mandaliya on CodePen.
Made with
:beforepseudo andbox-shadow. By Kaushalya Mandaliya.
A Pen by Kaushalya Mandaliya on CodePen.
| <?php | |
| $client_id = '<insert your spotify app client id>'; | |
| $client_secret = '<insert your spotify app client secret>'; | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, 'https://accounts.spotify.com/api/token' ); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); | |
| curl_setopt($ch, CURLOPT_POST, 1 ); | |
| curl_setopt($ch, CURLOPT_POSTFIELDS, 'grant_type=client_credentials' ); |
| from __future__ import annotations | |
| import array | |
| import asyncio | |
| from bisect import bisect_left | |
| from dataclasses import dataclass | |
| import logging | |
| import os | |
| import socket | |
| import time |
| # Spotify's Anti-Adveritsing blocking servers, tricking services to stop music services (DONT BLOCK THESE!): | |
| gcdn.2mdn.net | |
| r9---sn-n4v7kn76.c.2mdn.net | |
| gew1-accesspoint-b-zzfg.ap.spotify.com | |
| ns1.p23.dynect.net | |
| ns3.p23.dynect.net | |
| ns4.p23.dynect.net | |
| dns1.p07.nsone.net | |
| dns2.p07.nsone.net | |
| dns3.p07.nsone.net |
| Alan Walker βββββββββββββββββ 7 plays | |
| Gracie Abrams βββββββββββββββββ 6 plays | |
| Noah Kahan βββββββββββββββββ 2 plays | |
| Sabrina Carpenter βββββββββββββββββ 2 plays | |
| Billie Eilish βββββββββββββββββ 1 plays | |
| Maisie Peters βββββββββββββββββ 1 plays |
| # This is a basic workflow to help you get started with Actions | |
| name: CI | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events but only for the master branch | |
| on: | |
| push: | |
| branches: [ dev ] | |
| pull_request: |