You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(android): fix invalid encoding of scopes in query parameters
Before this, the `it.value.toString()` caused the list of scopes to be
encoded like `scopes[]=[scope1, scope2]` which is invalid.
This change fixes the encoding to `scopes[]=scope1&scopes[]=scope2` as
expected by the server.
0 commit comments