How can i push OAuth1 into my headers that I send? For example, in Postman I can just select this button in the below screenshot.
Try the UiPath.WebAPI.Activities.1.18.0
Or you can provide the already generated OAuth1 token in the Headers as below:
Thanks. How do i generate the Oauth1 token to pass into the headers?
Check the documentation of your product.
Usually it should be a GET request with OAuth1 with Consumer Key and Consumer Secret.
Hi, the documentation has the below Ruby code. I’m not positive how I can translate this into UiPath… Any ideas?
consumer = OAuth::Consumer.new(public_token, secret_key, {:site => 'https://api.tripleseat.com'})
access_token = OAuth::AccessToken.new(consumer)
response = access_token.get('/oauth/test_request')
But the Oauth1 authentication has to be passed as a Header… Which the screenshot your sent doesn’t do.
Hi This issue is still not fixed, for a good alternative to generate the signature yourself check my post:
OAuth1 not working with HTTP Request Activity - Help / Activities - UiPath Community Forum