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

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