Reputation: 454
I want to security test my web application as well as REST API'S but they require authenticated, How do I pass a Bearer token to it?
Upvotes: 1
Views: 620
Reputation: 181
You can pass this as a header with the -H
flag. So -H 'Bearer: [token]'
Upvotes: 1