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
I have 2 questions for my use case with regards to the following code(attached below) which is in your repo:
My current use case is I use a Authorization token "Bearer token_here" in my headers to access my Django REST API backend for subsequent requests after the 1 request being username and password after which my backend issues the user the token for subsequent requests. So header includes the key Authorization and the value is "Bearer token_here" and the body has other variables like blog_uuid ,etc...
1 a As per the code below, I need to add the $http_authorization part of the request body ?
b As a consequence of 1.a above, If I need to maintain my existing setup($http_authorization part of headers ), How do I make changes below which includes the $http_authorization part of header? and any changes part on the Django view end (class AuthorizeKeyAccessView) ?
Regarding , $cookie_sessionid , at the risk of sounding stupid, where do I obtain the value from ?
At the outset , Its a great repo ben.
I have 2 questions for my use case with regards to the following code(attached below) which is in your repo:
My current use case is I use a Authorization token "Bearer token_here" in my headers to access my Django REST API backend for subsequent requests after the 1 request being username and password after which my backend issues the user the token for subsequent requests. So header includes the key Authorization and the value is "Bearer token_here" and the body has other variables like blog_uuid ,etc...
1 a As per the code below, I need to add the $http_authorization part of the request body ?
b As a consequence of 1.a above, If I need to maintain my existing setup($http_authorization part of headers ), How do I make changes below which includes the $http_authorization part of header? and any changes part on the Django view end (class AuthorizeKeyAccessView) ?
The text was updated successfully, but these errors were encountered: