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
This API would be useful when full value of the header is needed (to log it somewhere, for example). Currently, there's only Authorization::<Bearer>::token which doesn't specify that the token is Bearer.
Sure, this is easy to do by concating "Bearer " to the token, but that requires an unnecessary allocation.
The text was updated successfully, but these errors were encountered:
This API would be useful when full value of the header is needed (to log it somewhere, for example). Currently, there's only
Authorization::<Bearer>::token
which doesn't specify that the token isBearer
.Sure, this is easy to do by concating
"Bearer "
to the token, but that requires an unnecessary allocation.The text was updated successfully, but these errors were encountered: