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.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }