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
0
votes
1 answer

How to get authenticate in Magento 1.9 with OAuth 1.0a in Angular

I want to authenticate within Angular app in my Magento. I don't see any documentation or question in StackOverflow which helps me figure it out! const consumerKey = 'c05028de10c242378cf5fd7eb7dd1008'; const consumerSecret =…
Adnan
  • 814
  • 12
  • 38
0
votes
0 answers

.Net Core 2 Spring.Rest.Client.RestTemplate Operation is not supported on this platform. Exception

I'm using Spring.Net.Social.Core to get access to web API. Authorization goes correct but when I'm trying to send GET request to server ... RestOperations.GetForMessage($"https://www.blablabla.com/{url}?tq={query}") I have "Operation is…
Valery Yegorov
  • 171
  • 1
  • 11
0
votes
1 answer

Xero Private App to get invoice with cURL- failed to validate signature / error 500?

I am trying to communicate with my Xero account through Xero API, a simple bash script and cURL. Also, I am working with a Xero Private App, this means I have already generated a public/private keypair, the public key uploaded to Xero and the…
Zeruno
  • 1,391
  • 2
  • 20
  • 39
0
votes
0 answers

How dis you get oauth-1.0a and crypto to work with WP-API

I am using crypto and oauth-1.0a from nmp in ionic2 application. I want to access WP-API which is correctly set to handle authentication, I tested this using Postman. Http.Get results in the following error: { "_body": { "isTrusted": true …
Mazolo
  • 307
  • 4
  • 19
0
votes
0 answers

Multiple requests asking for oAuth Token at the same time (Requests going From PHP to Java(Spring))

How to handle the way of getting oAuth Tokens when Multiple users use the application simultaneouslu\y(Requests going From PHP to Java(Spring))
Octopus
  • 165
  • 2
  • 14
0
votes
1 answer

how to pass token and token seceret to oauth swift

How to pass token and token secret on oauth swift lib i found following code on git documentation of lib // create an instance and retain it let oauthswift = OAuth1Swift( consumerKey: "********", consumerSecret: "********" ) // do your…
0
votes
0 answers

How to generate Authorization signature for Auth1.0 in PHP for Quickbook Online

I am trying to generate the Authorization header for quickbook online in Auth1.0, Here is my code. But when I trying to use API, it refuses the signature. Can anyone point out the error, please?
Buddhika
  • 419
  • 2
  • 12
0
votes
1 answer

Spring Security OAuth 1.0 flow - Consumer verification

I have an external partner that uses OAuth 1.0 to protect some resources. I need to access this resources and I would like to do this using Spring Boot and Spring Security OAuth. As I don't want to use XML configuration, I already searched for a way…
matthjes
  • 671
  • 7
  • 20
0
votes
0 answers

WP Rest API OAuth1 401 (unauthorized)

I can not get WP rest api working. No matter what I try I'm getting 401 (unauthorized). I've tried with Basic Auth and now I'm trying with OAuth1. I went through the process of getting the tokens and it works perfectly with Postman but when I try in…
mcirami
  • 3
  • 3
0
votes
1 answer

Which params does an OAuth 1.0 server look at?

I'm using OAuth 1.0 to sign requests i'm sending via http POST. My question is, does the server that receives the payload generate the signature based on ALL the fields sent in the form, or only ones it cares about? I'm using a web framework that…
horseyguy
  • 29,455
  • 20
  • 103
  • 145
0
votes
1 answer

Consuming a SOAP web service secured with oauth

Does anyone know how I can add a consumer key and consumer secret to consume a SOAP web service secured by OAuth1.0a ? I am trying to add this key and secret to soap header before I make a call to soap service.
yogsma
  • 10,142
  • 31
  • 97
  • 154
0
votes
1 answer

Twitter authentication with Ember.js and Rails

I'm using Torii and ember-simple-auth to manage authentication on my front-side, and Knock and Omniauth-twitter on my server. I had no problem with Facebook, but Twitter using Oauth1.0, I have troubles to figure out the flow. Here is my Torii config…
j-printemps
  • 1,288
  • 11
  • 21
0
votes
1 answer

OAuthSwift (1) connection

I'm trying to create a client (in a private pod) to connect to garmin API (OAuth1) and i've some problem to do it. I'm using OAuthSwift and OAuthSwiftAlamofire First i'm trying to get all the authorization, let oauthswift = OAuth1Swift( …
Makaille
  • 1,636
  • 2
  • 24
  • 41
0
votes
2 answers

Use woocommerce rest api v1 with http and javascript (not https)

Im using oauth-signature to generate my oauth-signature for connection with woocommerce api. I followed all the steps stated at woocommerce rest api documentation: The required parameters are: oauth_consumer_key, oauth_timestamp, oauth_nonce,…
Steffan
  • 704
  • 1
  • 11
  • 25
0
votes
1 answer

Obtain Request Token From REST API using Oauth1 in C#

As the title states, I just need help with the first part of OAuth1.0 authentication: obtaining the request token. I am doing this in a console application using C#. I have been working on this for 3 days now and I have tried numerous samples from…
Daniel
  • 145
  • 1
  • 13