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
{{ message }}
This repository was archived by the owner on Jan 17, 2023. It is now read-only.
When you call setAuthorizationHeaderFieldWithCredential: method, your credential must pass an if clause to turn your HTTP header field into Authorization = "Bearer <token here>"; which is:
(talking about the 3.0.0. branch here)
When using setAuthorizationHeaderFieldWithCredential: the library produces the following header field
Authorization = "Basic <wrong token here>";
To my knowledge, it should be
Authorization = "Bearer <token here>";
Also, the token in the 'Basic' case is NOT the access token stored in the AFOAuthCredential for given provider identifier.
When setting the Authorization header myself with the bearer keyword and my valid access token the call works.
The text was updated successfully, but these errors were encountered: