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
23
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
  • 357
  • 1
  • 2
  • 8
12
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
  • 121
  • 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
  • 15,639
  • 133
  • 442
  • 830
7
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
  • 228
  • 4
  • 12
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
  • 13,724
  • 5
  • 57
  • 74
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
  • 2,343
  • 13
  • 21
5
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
  • 61
  • 4
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…
Avanish Singh
  • 767
  • 2
  • 8
  • 32
5
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
  • 504
  • 4
  • 10
4
votes
1 answer

Generating a SHA256 oauth_signature in Python for Netsuite API

I am trying to generate an oauth_signature for an API call. Using Postman, I have generated the code as follows import requests import json url = "https://xxxxxxxxxxxx" payload = json.dumps({ "key1": "value", "Key2": "value2" }) headers = { …
GeneralCTR
  • 41
  • 3
4
votes
1 answer

OAuth 1 Online Signature Tester?

I know there is an ongoing battle about OAuth1 vs OAuth2 and Google seem to have taken the side of v2 and deprecated their super useful online testing tool that was hosted…
bigtv
  • 2,611
  • 5
  • 29
  • 42
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
  • 2,219
  • 2
  • 23
  • 37
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,229
  • 14
  • 24
3
votes
0 answers

How to consume a REST API with OAuth 1.0 using DotNetOpenAuth

Desperately trying to find a way to use DotNetOpenAuth for consuming a REST API with OAuth 1.0, I do not want to give up on DotNetOpenAuth yet. (I don't seem to be the only one struggling with how to use this giant package. See Accessing Yelp's…
MisterTuna
  • 89
  • 7
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,847
  • 12
  • 39
1
2 3
12 13