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.

IAuthService.cs 247B

12345678910
  1. using GrpcShared.DTO.Auth;
  2. namespace IdentityProvider.Services.Interfaces
  3. {
  4. public interface IAuthService
  5. {
  6. Task<CodeResponse> GetCode(AuthRequest request);
  7. Task<AuthResponse> GetAccessToken(CodeResponse code);
  8. }
  9. }