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
AccessTokenAdapter.toAuthorizationCallback does not do what it is supposed to be doing - it should be deprecated to prevent further misuse.
This function returns a function that always returns the same accessToken (which is pointless). Instead, you want a function that might return a new accessToken if the old one expires.
The following code is correct for an authorization parameter:
AccessTokenAdapter.toAuthorizationCallback
does not do what it is supposed to be doing - it should be deprecated to prevent further misuse.This function returns a function that always returns the same accessToken (which is pointless). Instead, you want a function that might return a new accessToken if the old one expires.
The following code is correct for an
authorization
parameter:This is wrong:
The text was updated successfully, but these errors were encountered: