Reputation: 149
I know modheader extension allows us to modify the header of a request. And as such we can handle authorization use cases by specifying Token. But what I've seen so far is the use of basic tokens. My question is : Does modheader allow us to specify Bearer Token as in tools like Postman or Thunder Client ? If Yes then how to do it ? Thanks for any hint
Upvotes: 3
Views: 2667
Reputation: 56
It works using the header Name "Authorization" and the value "Bearer YOURTOKEN"
Upvotes: 4