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
1
vote
0 answers

How to store access token of OAuth1.0a to use for all time requests to protected API? I'm using using Scribe Library

I'm using the Scribe Library to implement OAuth1.0a and somehow i got the AccessToken from Magento Service Provider. But my question is how to store and use the AccessToken for the further more requests i make using the…
CdVr
  • 323
  • 3
  • 15
1
vote
2 answers

Yelp API Produces Invalid Signature Error

After looking at several articles online, StackOverflow, and the Yelp Google Group, I've been unable to figure out the problem to an Invalid Signature error being produced from my Yelp API request. Here is the exact error: {'error': {'text':…
freddiev4
  • 2,501
  • 2
  • 26
  • 46
1
vote
1 answer

Add parameter into body with Scribe Library

I'm developing an Android app and I have integrated Scribe library to make http connection with OAuth1.0 with Magento. My problem is that I need to send a request with a parameter into body but without a key. Now I make login correctly and I have my…
Adae Rodríguez
  • 183
  • 1
  • 18
1
vote
1 answer

How do i get the control back to my app from the popup which comes up in quickbooks oauth

Im trying to implement oauth1 for quickbooks, using a python library requests_oauthlib. My problem is i tried setting up the quickbooks oauth as suggested by quickbooks inserting the quicbooks button. The sample code provided was:
DeadDjangoDjoker
  • 534
  • 2
  • 8
  • 20
1
vote
0 answers

Authenticate in PHP with an OAuth 1.0a / x_auth server

Need help authenticating w/ an OAuth 1.0a X_AUTH server in PHP. I've looked at several libs out there and cannot seem to figure to find one that will support an x_auth type setup. Here is the POST that i'm attempting to create. POST…
Jaison Brooks
  • 5,816
  • 7
  • 43
  • 79
0
votes
0 answers

How do I make a call from Azure API Management to an external API with OAuth 1.0

I need to make HTTP calls from various Azure Logic Apps (standard) and Azure Function Apps to an external API that is secured with OAuth 1.0. I want (almost need) Azure API Management to mediate these calls and handle things like authentication and…
Killianti
  • 11
  • 1
0
votes
1 answer

Correct format for a Base Encryption string for Oauth 1.0 for a PATCH request

Does anyone know what the correct format is for a base encryption string in Oauth 1.0 for a request? I tried the formats below, I test them against a Python Oauth library, and so far I have been unable to generate the correct Oauth…
Art F
  • 3,992
  • 10
  • 49
  • 81
0
votes
0 answers

OAuth1 implementation using requests library in Python

I'm trying implement OAuth1 using requests library in Python. import random import time import string import hmac import base64 import hashlib import requests from urllib.parse import quote ​ consumer_key = "" consumer_secret = "" access_token =…
Riya Sahal
  • 21
  • 5
0
votes
0 answers

Python OAuth1.0 using consumer key and RSA private key

I require to hit a URL and get the status of the URL (200 ok or not). For this we need to authenticate using OAuth1.0 , we have a consumerkey and RSA-256 private key. I am able to hit this endpoint through postman, looking for python script to do…
0
votes
0 answers

Generating OAuth 1.0 signatures with PHP core code leads to 'invalid signature' error - any ideas?

I am writing to seek assistance regarding an issue I'm encountering with generating an OAuth 1.0 signature in PHP core code. To provide some context, I have successfully generated the OAuth 1.0 signature using Postman for a particular API. However,…
0
votes
1 answer

Set Authorization Header with UTF-8 in Java

I am trying to perform the OAuth 1.0a authentication flow using Java. OAuth 1.0a requires "All parameter names and values [to be] escaped using the RFC3985 percent-encoding mechanism... Text names and values MUST be encoded as UTF-8 octets." I would…
HLR
  • 69
  • 4
0
votes
0 answers

How to make a GET request that takes oauth1 authentication

I am trying to fetch some available slots for an appointment booking application using Axios and GET request in node.js. i have tested the endpoint in postman and it works flawlessly, i copied the generated code for the request from postman, but it…
0
votes
1 answer

Post Data to NetSuite Restlet by using jQuery Ajax on form submit

I am trying to post form data to NetSuite restlet using jQuery ajax. Using below code to post data to NetSuite restlet OAuth1.0. jQuery(".form-button").click(function(){ jQuery.ajax({ url:…
sandhya
  • 5
  • 3
0
votes
1 answer

'/' in parameter value failing OAuth1 authentication failure

We are trying to fetch NetSuite API data using a scriptlet. We have a parameter lastModifiedDate which filters the records based on lastModifiedDate. When we pass date in 'MM/dd/yyyy' format, OAuth1 signature is generated, but is resulting…
Bhasker G
  • 217
  • 1
  • 6
  • 10
0
votes
0 answers

OAuth1.0a authorization with expo react-native

I've been trying to come up with a solution to this problem for the last couple of days, but now I'm out of ideas. Basically, I need to authenticate users of my mobile app (it uses expo) via legacy university API that uses OAuth1.0a instead of…