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

Unable to Access API

I am unable to access an API. This is what I am doing: import os, re import requests import logger from requests_oauthlib import OAuth1 oauth_consumer_key = "123abc" oauth_secret = "aaabbbccc" url =…
0
votes
1 answer

I keep getting Invalid signature error in NETSUITE

I am trying to login to Netsuite through the API but it keeps giving me the Invalid Signature error. I have checked the other answers and blogs but could not find what is missing. I changed the order and added the parameters manually in the…
Shubham Kumar
  • 51
  • 2
  • 11
0
votes
1 answer

How to use generated Oauth 1.0 header for GET request?

I have generated OAuth 1.0 header separately by using OAuth 1.0 custom header generator including following details. oauth_consumer_key oauth_token oauth_signature_method oauth_timestamp oauth_nonce oauth_version oauth_signature My requirement is…
0
votes
1 answer

How to call a NetSuite SuiteScript by SOAP - Ballerina Lang

I have created a NetSuite Saved Search to fetch some data. I have written a SuiteScript to access Saved Search and fetch data. The SuiteScript is also deployed. I tested the SuiteScript by postman using OAuth 1 authentication flow and its success. I…
0
votes
1 answer

Axios and Oauth1.0 - 'status: 400, Bad Request'

I'm new on Nodejs and all the modules related with Node. I've been trying to use axios for send a Oauth1.0 Autorization signature, but i'm getting: response: { status: 400, statusText: 'Bad Request', ...} import { BASE_URL } from…
0
votes
1 answer

node.js oauth-1.0a working for Twitter API v1.1 but not for v2

I've found this function to generate oauth-1.0a header: // auth.js const crypto = require("crypto"); const OAuth1a = require("oauth-1.0a"); function auth(request) { const oauth = new OAuth1a({ consumer: { key:…
MauricioRobayo
  • 2,207
  • 23
  • 26
0
votes
0 answers

I am struggling to implement an API call in Axios/Fetch that requires OAuth1.0 and need some guidance

I am building a react web app that needs to pull data from the Gravity Forms API. Someone has set up the Consumer_Key and Secret_key for me and I have it working fine in Postman. I have not used OAuth with an API call in Javascript before and am…
Hazy
  • 1,766
  • 2
  • 8
  • 12
0
votes
1 answer

Jmeter not showing up proper response instead giving details of server and connection details

I am using Jmeter 5.4.1 version, my API is of oauth1.0 type. When I ran my api through postman , it gave my proper json response for example an proper id, but the same api when ran through jmeter gives 200 response code but giving details of server…
0
votes
1 answer

How to generate signature for Oauth1.0 for here api c#

I want to send access token request for bearer token to here api.(https://developer.here.com/tutorials/how-to-authenticate-with-here-oauth/) They showed example using node. But I tried the same way in c#. But I got 400 bad request. My code is as…
Robin Khan
  • 127
  • 1
  • 10
0
votes
1 answer

Does all traffic for jira software server get routed through atlassian first?

I'm trying to build an app that uses Jira Software Server data. On Jira Sass Oauth is simple enough, but after creating an SSL cert and configuring a localhost jira instance for development, I can't get any proper responses from my own server, for…
Gdfelt
  • 161
  • 15
0
votes
2 answers

Problem generating signature with OAuth 1.0

I am having a problem generating a valid HMAC-SHA1 signature in powershell which I eventually would like to use with the Flickr API. I have been stuck on this for a couple of weeks, so if somebody please tell me what I a doing wrong, that would be…
Lee
  • 13
  • 3
0
votes
1 answer

ETrade api - invalid Consumer key and/or session token

When I attempt to make a request to Etrade's Account List endpoint in sandbox (https://apisb.etrade.com/v1/accounts/list), I am getting an HTTP 401 - "Unauthorized request - invalid Consumer key and/or session token". I don't understand why this…
mark
  • 4,678
  • 7
  • 36
  • 46
0
votes
2 answers

ETrade Authorization API - what are shared secret and token secret?

On the E*Trade authorization api documentation for Get Request Token, it states that the oauth_signature is generated with "the shared secret and token secret". When I generated my sandbox key, I was presented with the following…
mark
  • 4,678
  • 7
  • 36
  • 46
0
votes
0 answers

Implement Oauth 1.0a with php (shared server)

I am trying to send some data to an app, and they using Oauth 1.0a , but i never use it. I tryed to look here for some help and i tryed to look for tutos too but i didnt understand anything. I found this link : http://oauth.net/code/ But honestly i…
Enigma_20
  • 1
  • 1
0
votes
1 answer

Twitter oauth_signature needs urlencode (percent hex encode) ran twice on callback url in signature base

I am writing a PHP script to let users use Twitter to sign in to an app using OAuth 1.0a. I am having an issue with the request_token API. The oauth_signature parameter requires an HMAC-SHA1 hash ran on a signing base which has parameters such as…
godzilla
  • 971
  • 1
  • 10
  • 18