Questions tagged [oauth-1.0a]

OAuth 1.0a is revision A of the OAuth protocol. It has been obsoleted by OAuth 2.0. OAuth is a protocol that enables applications to obtain limited access to user accounts on an HTTP service, such as Facebook and GitHub. OAuth is natively supported in Spring Boot. Note that OAuth 2.0 is not backward compatible with OAuth 1.0

OAuth 1.0a is revision A of the OAuth protocol as defined by Internet Engineering Task Force (IETF) in RFC 5849. This mechanism is used by companies such as Amazon, Google, Facebook, Microsoft and Twitter to permit the users to share information about their accounts with third party applications or websites. It has been obsoleted by OAuth 2.0 (RFC 6749)

184 questions
0
votes
0 answers

Validate the oauth Signature which generated by 0-legged oauth 1.0 standard in spring boot 2.6.7

I need to validate the oauth Signature which generated by 0-legged oauth 1.0 standards. All oauth parameters ( oauth_signature, ouath_timestamp ,oauth_nonce, oauth_consumer_key, oauth_signature_method, oauth_version ) are coming in the Request DTO (…
0
votes
0 answers

Getting bad request response error in Tumblr api /posts endpoint

I am using python for making a post request on tumblr /posts endpoint but getting an error response. This is the code. Tumblr api use oauth1 authentication. import requests from requests_oauthlib import OAuth1 consumer_key =…
0
votes
0 answers

oAuth1 Failing To Provide Signature for Strings With Square Brackets - Error 401

I am obtaining an error when trying to use my oAuth1 signature generator for square bracket endpoints. products/{sku}-…
Lloukas
  • 89
  • 7
0
votes
0 answers

Writing a bridge for OAuth 1.0

for authentication I'm using AWS cognito. but the issue im facing now is that Cognito do not support OAuth 1.0. I know its very old now but still the client I'm dealing with don't want to upgrade so I have to make this OAuth 1.0 compatible with…
z9fr
  • 384
  • 5
  • 10
0
votes
1 answer

Accessing Twitter's API via OAuth1 in Node results in 401

I am attempting to post a tweet to Twitter from my NodeJS code (Lambda function). Using all my tokens in Postman, it works, the tweet goes. I've never used OAuth1 from Node before, and most references I'm finding online ate many years old using…
David Lozzi
  • 14,697
  • 9
  • 28
  • 44
0
votes
0 answers

Issue with OAuth1 LinkedIn API call within GoogleSheets

I am currently running a script which calls the LinkedIn API using a custom function called IMPORTJSON . The overall content of the cell looks something like this: =ImportJSON(https://api.linkedin.com/v2/shares?q=owners&owners=[.....]) The error I…
0
votes
2 answers

Invalid oauth1.0 signature issue using HMAC-SHA256, Calling NetSuite webapi

I am trying to call Netsuite api using oath 1.0 from C#. It works in postman. used postman generated values (timestamp, nonce, signagurebase) in c# then it worked. HMAC-SHA256 is being here. Generated Signature in code doesn't work, getting…
anand
  • 307
  • 3
  • 14
0
votes
0 answers

Signature Base URL of postman for OAuth 1.0

I am trying to call an API with OAuth1.0. But the signature I am generating with my custom code is not matching with the signature that is present in postman. The reason I want both to match is because with Postman I am successfully able to call the…
Gaurab
  • 1
0
votes
0 answers

How do I fix this XML error in RestSharp that occurs in a Request Token?

I'm trying to make a Request Token to a Jira On premise server API that requires the use of OAuth.1a, I've been using the below C# code and I receive the error System.Security.Cryptography.CryptographicException: 'The provided XML could not be…
antland01
  • 41
  • 1
  • 3
0
votes
1 answer

NetSuite using signedrequest4j OAuth 1.0 Access denied 401

I'm trying to consume services from NetSuite via signedrequest4j. The only result im getting is 401 Access denied, using the same credentials with Postman it works. this the method to get the authorisation header : public String…
ElyMan
  • 45
  • 8
0
votes
1 answer

Magento2 Integration Oauth error - An error occurred validating the nonce

I am trying to activate Magento2, version 2.4.4, integration with expressjs backend. The callback url is being hit and the data is being stored in the db. Then upon hitting the identity url, the pop up of login for app to be integrated is opened and…
HumptyDumptyEIZ
  • 374
  • 1
  • 6
  • 18
0
votes
1 answer

Request for oauth_token for Twitter shows "Sorry this page doesn't exist" error

I am sending an API request to get my oauth_token through postman. This is my request: https://api.twitter.com/oauth/request_token?oauth_callback=oob where the header is Content-Type:application/json and I am providing API key and secret under the…
0
votes
0 answers

REST API Call not working in generated code but working on browser

I have generated a request in my python code to an API however it returns a 401, not authorized in the generated code and on Insomnia however it works successfully and returns a 200 when I try accessing the endpoint on my browser. I pass the…
0
votes
1 answer

How do I properly debug my Authentication headers in an Axios request?

I'm trying to send a request to the Schoology API but I'm met with a 401 error, which means that my Authentication headers are incorrect (I think). I'm using Axios to send the request like this: function getUsers(headers) { …
0
votes
1 answer

Authenticated twitter requests using only access token

I'm trying to authenticate twitter requests on behalf of another user. Basically I have 3 things: Twitter ID oauth_token (Access token) oauth_secret (Access token secret) From everything i can see in the docs, i also need the consumer key and…
user601206
  • 123
  • 7