Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819
  1. using System;
  2. namespace SpotifyService
  3. {
  4. public static class GLOBALS
  5. {
  6. public const String SPOTIFYURL = "https://api.spotify.com/v1/";
  7. public const String MEDIATYPE = "application/json";
  8. public const string CLIENT_ID = "83e1d09876b049c4bb1953185a4b3bfb";
  9. public const string SECRET = "ea752433d0774fad87fab5c1ee788c8d";
  10. //public const string REDIRECT_URI = "http://localhost:5051/callback";
  11. public const string REDIRECT_URI = "https://localhost:5001/callback";
  12. public const string SCOPE = "user-read-currently-playing user-read-email user-library-modify user-top-read user-read-private user-library-read"; /*
  13. "ClientId": "83e1d09876b049c4bb1953185a4b3bfb",
  14. "RedirectURI": "https://localhost:44342/callback",
  15. "Scope": "user-read-currently-playing user-read-email user-library-modify user-top-read user-read-private",
  16. "ClientSecret": "ea752433d0774fad87fab5c1ee788c8d"
  17. */
  18. }
  19. }