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

when I try to make google authorization get Error: invalid_request Error when site is published. Oauth 1.0

I have already finished MVC site which use Oauth 1.0 When I try to make authorize with google account from localhost (from debug mode) I fluently make authorization without any problem, But when I publish my site on server I have some problem, when…
Avtandil Kavrelishvili
  • 1,651
  • 3
  • 27
  • 37
2
votes
1 answer

Django - Temporarily save request token for OAuth 1.0a flow

The Twitter OAuth 1.0a flow requires authenticated request token to be exchanged with access token at consumer or client side after user has authenticated. The problem that I'm facing is that generating access token needs authenticated request…
Kshitij
  • 639
  • 1
  • 10
  • 25
1
vote
0 answers

How to tweet a video with hashtags and emoji using Oauth1?

Trying to post a tweet with video in hindi language with hashtags and emoji using v1.1 update.json endpoint of twitter api. Video has been uploaded successfully media id is generated against it and video is ready to be posted, but when I am posting…
1
vote
0 answers

Sending request to NetSuite ERP using Spring web client having Oauth1 authentication

I need to migrate a legacy NetSuite ERP job using Springboot. The clients are using OAUTH1 authentication so I couldn't find a straightforward way to send requests using Spring WebClient or Webflux. Finally ended up using…
1
vote
1 answer

Steps or Procedure to create and authenticate web SDK

I tried searching in various places, googling about how I can create and authenticate an SDK which I can use as a starting point. Here is what I am trying to achieve. My Application: I am creating a saas similar to firebase, supabase etc., where a…
1
vote
3 answers

Call REST Api using OAuth1.0 to netsuite SuiteTalk on C# application

Now I am trying to connect to rest api of Netsuite SuiteTalk on C# application using RestSharp. But it returns Unauthorized error(401). (Calling api using Postman is working) My code as follows. public string generateSignature(string httpMethod,…
David Lee
  • 13
  • 6
1
vote
0 answers

Create authorization header in oath1 with signature Method HMAC-SHA256, consumer key and consumer Secret only

I want to create below Authorization header with signature Method HMAC-SHA256, consumer key and consumer Secret only for oAuth1 security. I tried multiple ways but wasn't able to get the correct value. Please help me. I am trying to create…
1
vote
0 answers

OAuth 1.0 GetAuthorizationHeader - WinForm C#

I am trying to call http request using OAuth, but I didn't find a way to create OAuth header to add it to the request. I used to create new header(signature(RSA SHA1), nonce and timestamp) for each request but I receive unauthorized message every…
fowif39074
  • 11
  • 1
1
vote
1 answer

woocommerce_rest_cannot_view with oauth 1.0

I using OAuth 1.0a to authentication my android app as admin to view Woocommercerest API source I using the retrofit library and it works but today I have this problem I/okhttp.OkHttpClient: Content-Type: application/json;…
1
vote
1 answer

Netsuite Oauth 1.0 authentication from swift iOS

I am trying to integrate netsuite modules in iOS application. I am not able generate proper oauth signature for the header. I have tried using 'OAuthSwift' library for this purpose, but I have no proper idea on how to add the headers like…
SJP
  • 11
  • 3
1
vote
0 answers

How validation happens for multiple users using OAuth 1.0 token in WebAPI C#?

I have written logic in startup.cs to expire the token in every 10 minutes. but I worry when multiple users invoke the API different token will be generated for different users, then how the state & token validity is maintained for different…
ali
  • 31
  • 5
1
vote
1 answer

How to authenticate an API using OAuth1.0 with custom made header using Spring boot

I am working on the OAuth1.0 authorization process and here is my Java code in Spring boot, package com.example.demo; import com.mgiorda.oauth.OAuthConfig; import com.mgiorda.oauth.OAuthConfigBuilder; import com.mgiorda.oauth.OAuthSignature; import…
prabhu
  • 103
  • 1
  • 3
  • 15
1
vote
0 answers

Incorrect OAuth 1.0a signature generation in C#

After reviewing the OAuth 1.0 documentation for signing requests, I'm struggling getting my signature to match what Postman generates. I've checked things are capitalized / lowercased when necessary, parameters are sorted, encoding is done where…
dajaffe
  • 855
  • 13
  • 34
1
vote
1 answer

Send Direct Message using Twitter API does not work

I am trying to send Direct Message to a user who I follow and who follows me. When I first tried to make a POSTMAN request as per the document here I was getting a HTTP 415 response, media type not supported. I looked up the Error code in their…
anu
  • 1,017
  • 1
  • 19
  • 36
1
vote
1 answer

I can't reach into the verify callback when using passportjs's new OAuthStrategy() for twitter's 3-legged-auth

I would like to use Oauth1.o to get credentials from a provider but I am halfway stuck. I am using passportjs for the implementation. Here is the brief code: oauth.js const passport = require('passport'); const OAuthStrategy =…
Mnengwa
  • 217
  • 4
  • 10
1 2
3
12 13