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)

155 questions
22
votes
3 answers

How to use POSTMAN rest client with magento REST api with Oauth. How to get Token and Token Secret?

I am a beginner to magento REST API, how i will get token and token secret to be fill in Postman REST resquest. I have only consumer key and consumer secret. Please provide me the steps to follow.
Deepak Kumar
  • 347
  • 1
  • 2
  • 7
11
votes
0 answers

How does Postman generate oAuth 1.0a signatures?

I'm attempting to connect to an oAuth 1.0 authenticated endpoint but the signature that Postman creates does not match the signature we expect in our code. As far as I can see all the parameters that I have added are correct (Url, consumer_key,…
I Edmo
  • 111
  • 3
10
votes
1 answer

How do I view the raw signature Postman uses when it makes its OAuth requests?

I'm using Postman 5.1.3. I'm trying to connect to an OAuth 1.0a endpoint using Postman's OAuth screen. How do I view the raw signature that Postman is using to construct its hashed "oauth_signature" param? I'm filling in a value…
Dave
  • 17,420
  • 96
  • 300
  • 582
7
votes
0 answers

Microsoft Owin OAuth 1.0

All the examples included in the Microsoft.Owin.Security.* packages are for OAuth 2.0. I am trying to build a provider for OAuth 1.0, specifically, for BitBucket. Can anyone provide me with pointers, examples, implementations, or even tell me if…
Ricardo Peres
  • 11,795
  • 4
  • 45
  • 64
6
votes
1 answer

How to call Oauth 1.0 API in Android?

I am trying to call Context.io API from Android which is based on Oauth 1.0 Authentication. Can you please suggest me how I can create request for Oauth1.0 standard or Please, anyone can provide me the sample code of Oauth1.0 request example on that…
Rishi
  • 218
  • 3
  • 12
5
votes
1 answer

Google Script Oauth v1.0 REST API access

I need a way to access a Oauth v1.0 rest API form inside google script. google apps script. I found this page It says that the Library was sunset in 2015. I tried to add it. When I do I get an error that it's not supported anymore and my script…
Kent
  • 1,407
  • 10
  • 20
5
votes
1 answer

oAuth 1.0 get request retrofit android

I want to implement oAuth 1.0 get request using Retrofit but not able to get response. Response of Postman: { "1": { "entity_id": "1", "parent_id": "0", "position": "0", "level": "0", "name": "Root…
Kunwar Avanish
  • 713
  • 2
  • 8
  • 30
4
votes
0 answers

Swagger 3.0.1 and oAuth1

Currently, there is no oAuth1 support in OpenApi 3.0.1 specifications I need to indicate that some endpoints require an oAuth1. May someone has some ideas, insights how to do it? I'm not expecting to have a full swagger functionality, Just a…
zghib
  • 51
  • 4
4
votes
1 answer

Android: Generate Oauth1 Signature in Volley Request

I am trying to add Oauth1 Authorization in my android app using volley in the postman when i add the details like oauth_consumer_key, oauth_consumer_secret , token_key token_secret like the picture below it generate a header like below picture and…
Adarsh
  • 1,889
  • 1
  • 21
  • 33
4
votes
2 answers

Invalid Signature - provided signature does not match WooCommerce REST API calling from Android

I am an Android developer and new to Woocommerce and started consuming REST service with Oauth1.0 authentication. I am getting proper response from PostMan (RestClient plugin) and getting "Invalid Signature" error while I call from my android…
Ramesh Kumar
  • 1,209
  • 14
  • 24
3
votes
1 answer

Woocommerce rest api invalid signature (error 401) on post request

I am working on an Ionic 2 project for a woocommerce store. I am using Woocommerce REST API in my app and for testing the API with OAuth-1.0 using Postman Chrome App. I am getting proper responses with GET requests but for POST requests, I am…
rmalviya
  • 1,253
  • 7
  • 27
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
  • 157
  • 8
3
votes
1 answer

How to setup the callback URL in the OauthSwift library

I am working on a project where I am implementing the OAuthSwift library to connect to several different social networking sites that use both OAuth1 and OAuth2. I have the application set up to load a web view that takes me to my social networking…
Janie Larson
  • 444
  • 3
  • 10
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
  • 4
2
votes
1 answer

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,144
  • 3
  • 25
  • 53
1
2 3
10 11