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

1234567891011121314151617181920212223242526
  1. syntax = "proto3";
  2. option csharp_namespace = "IdentityProvider.Protos";
  3. package auth;
  4. service AuthorizationService {
  5. rpc RedirectUser(AuthParams) returns (AuthResponse);
  6. rpc GetAccessToken(AuthResponse) returns (AccessResponse);
  7. }
  8. message AuthParams{
  9. string client_id = 1;
  10. string redirect_uri = 2;
  11. string response_type = 3;
  12. string scope = 4;
  13. bool show_dialog = 5;
  14. }
  15. message AuthResponse {
  16. string code = 1;
  17. }
  18. message AccessResponse {
  19. string access_token = 1;
  20. }