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 do i post an attachment while calling confluence api using oauth1 with python?

i am successfully able to update confluence page calling confluence api with oauth1. But i am unable to post an attachment. i have looked in to multiple blogs but i am unable to find any solution.
0
votes
0 answers

From Postman to PHP: Can't Properly Generate an Oauth 1 Signature

I’m having a rough time getting a simple Oauth 1 api call to work. I’ve figured out how to access the data I want via Postman and have made successful calls for lists, starred items, etc. If I copy an already-run call from postman and rerun it…
sharedphysics
  • 25
  • 1
  • 10
0
votes
1 answer

Library to verify OAuth 1.0a signature in ASP.NET Core

I need to validate OAuth 1.0a (RFC 5849) requests on an ASP.NET Core site. Upgrading the client to OAuth 2.0 or anything else is not an option. I understand the spec, but implementing the verification process for the oauth_signature seems like it…
Dave Mateer
  • 17,608
  • 15
  • 96
  • 149
0
votes
1 answer

Zapier - Xero: Custom Integration

Has anyone managed to create a custom integration between Zapier and Xero by using the 'Webhooks by Zapier' option and a private connection on the Xero side? At the moment Xero uses Oauth-1a to create sessions and I can't figure out how to even…
DBa
  • 261
  • 1
  • 3
  • 11
0
votes
0 answers

OAuth 1.0 Swift Parse Response

I am fetching data from an API using OAuth for authorization. I have successfully fetched the data I'm interested in and want to parse the result. It is not possible to convert the response to JSON format or a dictionary. I have tried using…
Casper Lindberg
  • 600
  • 1
  • 6
  • 21
0
votes
2 answers

oauth1.0 with username and password in python

I am trying to integrate qwikcilver API in my project. They are using oauth1.0 for authentication. I am using requests-oauthlib python lib for oauth1.0. Here is my code for authentication. # Using OAuth1Session oauth = OAuth1Session(client_key,…
0
votes
1 answer

How a OAuth1.0 Signature is generated

I have to Authorize a request using OAuth1.0. In the response header it requires access token,OAuth Nonce,Timestamp and OAuthSignature.I wrote methods for creating Timestamp and OAuthNonce How the OAuthsignature is generated using these…
0
votes
1 answer

Httpwebrequest header format in vb.net

I have an application that is using username and password for authentication to connect to net suite. the authentication method for net suite has changed to token base. After looking at 25 different possible solutions I have I get a 401 error.…
0
votes
1 answer

Should the WWW-Authenticate realm parameter be encoded?

When building the WWW-Authenticate header value for OAuth/OAuth1a it calls for percent-encoding the parameters. The spec and implementations are ambiguous on whether the realm parameter should be percent-encoded or not. Section 5.4.1. Authorization…
johnlcox
  • 520
  • 6
  • 12
0
votes
0 answers

HTTP/1.1 401 Unauthorized error when calling HttpGet with OAuthConsumer client

I am getting 401 Unauthorized error when i use Http GET call with OAuthConsumer client. I have all the required parameters for Oauth 1.0 authorization. Consumer Key = "XXX" Consumer Secret = "YYY" oauth_signature_method = "HMAC-SHA1" oauth_timestamp…
0
votes
0 answers

Integration Laravel with Netsuite

is there someone who has experience in implementing Netsuite account with Laravel. I need implement OAuth 1.0 RESTlet authorization header. Thanks .
0
votes
1 answer

Oauth 1.0 in Mulesoft - Using Anytime Studio in Eclipse

All - I am trying to configure an HTTP connector to use Oauth1.0 instead of Basic Authentication with the Anytime Studio IDE for Eclipse. I am used to configuring the connection in the drag/drop interface of middleware, but never touching the source…
0
votes
1 answer

IdentityServer4 for .NET Framework 4.5 and OAuth 1.0?

I would like to know if IdentityServer4 can be used for .NET Framework 4.5 and OAuth 1.0?
0
votes
1 answer

Node.JS - Return Promise Gives 'undefined'

When I try to call this oauth-1.0 API request, const request = require('request'); const OAuth = require('oauth-1.0a'); const crypto = require('crypto'); function main(params) { // Dependencies // Initialize const oauth = OAuth({ …
John C
  • 517
  • 2
  • 6
  • 16
0
votes
0 answers

Twitter API on JS Web View - Create a Twitter Clients that tweets on behalf of users

I need to make a very simple Twitter Client in JavaScript (Web View - not Node) like https://hootsuite.com/dashboard#/publisher, that will send users to authenticate on twitter and then, be able to fetch their tweets (and the tweets of the people…
Shl
  • 3,130
  • 1
  • 17
  • 16