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
3
votes
0 answers

OAuth1.0 Authentication Using Alamofire

I am using alamofire for networking in swift3.0 project. I need to get data from woocommerce rest apis e.g http://woocommerce.github.io/woocommerce-rest-api-docs/#product-properties Below is the code I have added in my project. I think there is an…
Mubeen Qazi
  • 167
  • 1
  • 8
2
votes
1 answer

Postman Oauth 1.0 signature does not match what I get in Perl

I'm trying to authenticate to the Here.com API via Oauth 1.0. I have a working Postman request that successfully gets an authentication token. I tried implementing the signature-generating procedure in Perl, but the signature I get is different from…
2
votes
0 answers

Garmin wellness-api - Invalid OAuth signature - PHP

i have problem with generate oAuth signature to Garmin Wellness API. $oauth_nonce = 'OhJBVADBAC8'; $oauth_timestamp = '1614947339'; $date_from = 1607089161; $date_to = 1614865161; $url =…
mhc
  • 31
  • 5
2
votes
2 answers

Dart OAuth 1.0 - Invalid signature - provided signature does not match

I am calling an api with OAuth 1.0 and i am using the below package for the api call. But I am getting the below error. Please anyone guide me to fix this error. Library for api call: https://github.com/nbspou/dart-oauth1 My Code: const String…
Achin
  • 1,252
  • 4
  • 28
  • 63
2
votes
1 answer

Getting trouble accessing tumblr API using Apps Script

I am trying to post to tumblr using Google Apps Script. I have learnt Tumblr uses OAuth V1. To get an idea and to test the API I copied the GSuiteDevs Apps Script OAuth1 Twitter Sample code available at Github. I have suitably modified wherever…
user13355752
2
votes
0 answers

How to Authenticate a URLRequest Using Alamofire with OAuth1

I am having a problem trying to Authenticate a request using alamofire and OAuth1 and I am using this library to do so: https://github.com/phenemann/Authentication/ but I am not able to succeed if you know how to use alamofire with OAuth1. Bellow is…
2
votes
1 answer

OAuth1 reject_token 401 unauthorized

Get Access Token request of OAuth1.0 only work once for Magento1.9 after being redirected back from Authorization URL. Next time when requesting for Access Token I get reject_token. What I noticed there is difference in signature of both objects'…
Abdul Baig
  • 3,683
  • 3
  • 21
  • 48
2
votes
2 answers

Cannot authorize me using OAuth 1.0a, failing when requesting an accesToken

I am trying to authorize me on service using OAuth 1.0a. I can do the requestToken and authorize steps but when I call the accessToken URL I get a 401 Unauthorized response back with the following message: OAuth Verification Failed: Can't exchange…
Rox
  • 2,647
  • 15
  • 50
  • 85
2
votes
1 answer

How to make an authenticated request to 500px api via oauth 1.0 using Meteor.js

I need to make an authenticated request to 500px api via oauth 1.0. I was following this guide and implemented the described workflow in a few different ways but I'm keep getting statusCode: 401.... So here is how OAuth request should be…
NIkita Koren
  • 157
  • 1
  • 9
2
votes
0 answers

Is 2 legged oauth possible with Rauth or alternative python 3 library?

I have been searching for a way to implement 2 legged oauth in python 3 to work with the brightcloud api. They offer several code examples using java, php, ruby, .NET C# here: https://bcws.brightcloud.com/code-samples.php. I tried following the same…
Fraser
  • 31
  • 1
  • 3
2
votes
0 answers

Oauth 1.0 compatiability with Amazon Oauth 2.0

I'm currently working with PhpoAuthLib Library Here and i'm working with trying to integrate it into an Alexa skill for the Amazon echo. I have pretty much got the entire workflow and I am stumped on the last step as Amazon's error reporting is…
Lewis Thomas
  • 129
  • 11
2
votes
1 answer

7 Digital API invalid signature

Please can you help me. I am trying to generate a HMAC-SHA1 hash for 7 Digital's Premium API however I cannot get the correct signiture. I have followed this post https://oauth1.wp-api.org/docs/basics/Signing.html and have got the following code : …
Katie
  • 331
  • 2
  • 6
2
votes
1 answer

OAuth1 Authentication in RestSharp for Twitter API GET and POST methods

Using Postman I'm successfully able to query and create tailored audiences using the Twitter API, using Postman's OAuth 1.0 Authorization. However when trying to do the same with RestSharp I get an Unauthorized error. "UNAUTHORIZED_ACCESS" - "This…
Tim
  • 71
  • 1
  • 5
2
votes
0 answers

Is it possible to configure Spring OAuth1 in Java not XML?

I am trying to build an OAuth1 authorization server using Spring. My Spring Security configurations are in Java and the configurations I have for OAuth1 are in XML. When I start up the server I get an error saying No bean named…
FourtyTwo
  • 734
  • 8
  • 19
2
votes
1 answer

Twitter Invalid request token when requesting access token: C#

I am trying to accomplish step 3 of getting sign in with twitter. Exchanging the OAuth Request Token for an OAuth Access Token. I have received an access token in step 1 and the user can authorize in step two which returns a oauth_verifier. The…
user2865335
  • 27
  • 1
  • 4
1
2
3
12 13