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个字符

appsettings.json 535B

1234567891011121314151617181920
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "Kestrel": {
  10. "EndpointDefaults": {
  11. "Protocols": "Http2"
  12. }
  13. },
  14. "AuthParams": {
  15. "ClientId": "83e1d09876b049c4bb1953185a4b3bfb",
  16. "RedirectURI": "https://localhost:5001/callback",
  17. "Scope": "user-read-currently-playing user-read-email user-library-modify user-top-read user-read-private user-library-read",
  18. "ClientSecret": "ea752433d0774fad87fab5c1ee788c8d"
  19. }
  20. }