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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
пре 3 година
пре 3 година
пре 3 година
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. }