I received an API collection which has OAuth 1.0 implemented in it. When I’m trying to run the API in postman directly then it is giving me the results but the same thing when I’m trying to integrate the API in Node Js then it’s giving me the below error.
error code: INVALID_LOGIN_ATTEMPT
error message: Invalid login attempt.
Through postman code snippet I’m receiving the Authorazation headers when running the API like this:
'Authorization': 'OAuth realm="***",oauth_consumer_key="***",oauth_token="***",oauth_signature_method="HMAC-SHA256",oauth_timestamp="1718261914",oauth_nonce="***",oauth_version="1.0",oauth_signature="***"'
I’m not getting wht it’s giving me such an error.
Need your help and suggestions on this.