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.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

AuthService.cs 647B

12345678910111213141516171819202122232425
  1. //using IdentityProvider.Protos.AuthService;
  2. using GrpcShared.DTO.Auth;
  3. using IdentityProvider.Services.Interfaces;
  4. namespace IdentityProvider.Services
  5. {
  6. public class AuthService :IAuthService
  7. {
  8. private readonly ILogger<AuthService> _logger;
  9. public AuthService(ILogger<AuthService> logger)
  10. {
  11. _logger = logger;
  12. }
  13. public Task<AuthResponse> GetAccessToken(CodeResponse code)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public Task<CodeResponse> GetCode(AuthRequest request)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. }