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.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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