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

Authorization Server Endpoints

As we know the Spring Security OAuth 2.0 project has bee depreciated and now it's Spring Security 5. My question is related with Authorisation Server for grant_type: authorization_code. Spring team is also working on standalone project for…
Deminem
  • 672
  • 8
  • 19
1
vote
0 answers

Google Apps Script OAuth1 Errors

I am trying at the moment to connect MasteryConnect data to Google Sheets using their API I have a Secret and Consumer Keys, but I get an error. I have installed the latest OAuth1 Library- https://github.com/gsuitedevs/apps-script-oauth1 Here is…
1
vote
1 answer

Oauth HMac Signature Generator for HERE map

I want to use HERE map api's in my project. As per their document, I need to use generate the signature first using Oauth 1.0 HMAC-256. I am following below AAA sdk by HERE map…
Nagendra Nigade
  • 866
  • 2
  • 12
  • 28
1
vote
1 answer

How to set authorization headers for OAuth1.0a

I'm pretty familiar with restAPIs, however this one is giving me a bit of a headache. I'm trying to migrate my OAuth 1.0 tokens into OAuth 2.0 tokens using this documentation https://developer.xero.com/documentation/oauth2/migrate. The request: POST…
Nighthee
  • 1,329
  • 3
  • 13
  • 14
1
vote
1 answer

OAuth Verification Failed: Verification of signature failed (Schoology API)

I'm attempting to build an app for the students at my school using the schoology API, and when trying to get a request token, I get the "OAuth Verification Failed: Verification of signature failed" error. I'm using express to access the API, my code…
1
vote
1 answer

Xero returning a cryptic "Unknown Consumer"

I am getting a very odd error from the Xero RequestToken endpoint. oauth_problem=consumer_key_unknown&oauth_problem_advice=Unknown Consumer (Realm: , Key: ) I know the Consumer Key provided is correct and have verified the Authentication: OAuth…
tigerswithguitars
  • 2,497
  • 1
  • 31
  • 53
1
vote
0 answers

Angular 6 - HttpClient.get 401 error response while trying to read octet stream content

I am trying to call a rest api that returns octet stream content in Angular 6. The request is as follows: fetchOutput(jobId : string,outputId:string) : { const options = { headers: new HttpHeaders( { 'Content-Type':…
1
vote
2 answers

How to store OAuth1 tokens used by an Angular Front-End

I'm currently working on a headless project: an Angular Front-End retrieves data dynamically using a Back-End's API. This API requires an OAuth1 ahtorization, so that the Angular app has to pass 4 tokens (request, request secret, access, access…
1
vote
1 answer

Twitter API: Oauth URL for a Wordpress Plugin?

I am working on a Wordpress Plugin and facing a Problem. A User request was a Twitter integration. So I'm right now looking trough the OAuth Twitter API and creating a App to build the foundation. As I was creating the App, I need a callback URL.…
1
vote
0 answers

Garmin Health API Oauth 1.0 iOS response error

I need to show Garmin health data in my app. Garmin documentation ask developer to implement connection thorough oauth 1.0 connection with the app and garmin account. So, when i apply GET/PUSH request with the…
Jamshed Alam
  • 12,424
  • 5
  • 26
  • 49
1
vote
1 answer

Wordpress REST API, Oauth1, and python requests not working

I am having a very odd issue that I cannot seem to solve: I have set up the REST API and an Oauth1 server on my wordpress site. I had previously been able to use the python requests library to connect to the server and upload new posts, however, I…
1
vote
1 answer

oAuth1.0a doesn't work for wordpress API from Python using requests, although call works from Postman

I am fairly new to programming and Python and I tried to POST to the wordpress REST API with OAuth1.0a to create a post to my blog. In Postman it all works well, so the credentials are ok. But my Python code below returns 401 - rest_cannot_create. I…
tobsen
  • 11
  • 2
1
vote
1 answer

Blazemeter Oauth plugin for JMeter no longer supports authentication using OAuth 1.0?

I need to test HTTPS requests with OAuth 1.0 as the authentication method. I tried using the deprecated plugins with older versions, and the Blazemeter script for the same, but neither of them work. I just need to pass the Consumer Key and Secret…
Chaithra
  • 11
  • 1
1
vote
1 answer

Get signed OAuth request in the Authorization header of a HTTP Request c#

I'm using the below code to get the authorization header from a url but the authorization field is always returned as null string url = "https://xyz.appdirect.com/api/integration/v1/events/abc-123"; HttpWebRequest httpWebRequest =…
Yoda
  • 319
  • 2
  • 5
  • 20
1
vote
0 answers

Authenticating Student Accounts with Khan Academy API

I am writing a Google Apps Script to access student information from Khan Academy through their API. Currently, I have a script that successfully accesses MY user data and lists my students' information as JSON data. I can access their user ids and…