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 символов.

IAuthClientService.cs 308B

123456789101112
  1. using GrpcShared;
  2. using GrpcShared.DTO.Auth;
  3. namespace NemAnBlazor.Services.Interfaces
  4. {
  5. public interface IAuthClientService
  6. {
  7. Task<CodeResponse> GetCode(AuthRequest request);
  8. Task<AuthResponse> GetAccessToken(CodeResponse code);
  9. Task<AuthParams> GetAuthParams();
  10. }
  11. }