I need to do a API testing for my legacy application which is using OAuth 1.0 for authorization. Basically I will get a temporary tokens to get a access token for the API testing.
I am using JMeter 5.4.3 for the testing.
In the HTTP Header Manager, I am adding below header
OAuth oauth_consumer_key="${BbTSConsumerKey}",oauth_consumer_secret="${BbTSConsumerSecret}", oauth_signature_method="HMAC-SHA1",oauth_timestamp="1654865360",oauth_nonce="5348516",oauth_version="1.0",oauth_signature="04Lp%2BF9wZjrFSCjfL%2FLdCepsUYc%3D"
But above line is not working. Getting 401 - Not Authorized error.
Please help how to make Jmeter work with OAuth v1.0.