This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** @noinspection SpellCheckingInspection */ | |
/** @noinspection PhpMissingBreakStatementInspection */ | |
namespace TelegramBot\Util; | |
use TelegramBot\Exception\UtilException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from httpx import AsyncClient | |
class SpotifyUser: | |
authorize_url = "https://accounts.spotify.com/authorize" | |
token_url = "https://accounts.spotify.com/api/token" | |
def __init__(self, client_id, client_secret, redirect_uri): | |
self.client_id = client_id | |
self.client_secret = client_secret |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Text; | |
using System.IO; | |
using System.Collections; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using System.Text.Json.Serialization; | |
using System.Text.Json; |
NewerOlder