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

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