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

Using Twitter api url to tweet

LinkedIn api provides access token to use it in url to post a message which uses oauth2 in Rest client. So by using the url in my application, i can post the message. Twitter api uses oauth1 to tweet by accepting parameter.But the problem is…
Shashank G
  • 912
  • 1
  • 16
  • 26
0
votes
3 answers

Woocommerce Rest api oAuth1.0a authentication error

I am working on a react native project in which I need to create an app to display the products and orders with the help of woocommerce rest api. I am making my own oauth request to fetch the json data as crypto npm module is not supported in react…
0
votes
1 answer

OAuth1Session Encoding of URL Django

Alright, I need some assistance with what I think is an easy question, but after digging for quite a while I'll leave it to you brilliant people to show me why I'm not! I'm attempting to access a provider api, with the URL I'm attempting to access…
crobertsnc
  • 11
  • 2
0
votes
1 answer

HMACSHA1 oauth_signature in java

Is It possible to generate HMACSHA1 oauth_signature in java without using OAuthConsumer of signpost library, so it can be easily implemented with other languages like objective-c etc?
Shahab Rauf
  • 3,651
  • 29
  • 38
0
votes
0 answers

Constant 401 error with OAuth1 (MCM API)

I've been trying to establish a connection with an API for more than a week now, to no avail. (Magic Card Market's, authentification documentation here and there). I'm supposed to receive a XML file. I have what MCM call a "widget" access to their…
user4135745
0
votes
1 answer

How to post json data to order an item using woocommerce api using ajax with authentication

I have tried 2 types of ajax calls to post json data so that i can order an item using woocommerce API. I am using OAuth1.0a to authorize the user. Its getting the data but not able to post the data. But none of them worked for me. So please…
SV Madhava Reddy
  • 1,858
  • 2
  • 15
  • 33
0
votes
1 answer

AFJSONRequestOperation create "oauth_problem=signature_invalid"

I am developing app which require to use OAuth1.0 for call API. I am able to Authenticate with OAuth1 and call GET method API. But when I try to call POST method with passing JSON object. It give me "oauth_problem=signature_invalid" Code for request…
girish_pro
  • 838
  • 9
  • 18
0
votes
1 answer

Woocommerce API Authentication Error

I am trying to authenticate as an AngularJS and Ionic App with Woocommerce API. Here is my code. var ck = 'ck_6fffb5cbc00eqe00a7c3062cd85dae2ee64f919e'; var cs = 'cs_c2fd467cqq8857a08941c15bc708e3c16dc1f026'; var url =…
Samarth Agarwal
  • 2,044
  • 8
  • 39
  • 79
0
votes
1 answer

Jmeter OAuth 1.0 Request

I have a Java code for OAuth 1.0 Authentication and each time i have to execute it before testing each request. I am currently working on JSR223 sampler. But happen to see this OAuth 1.0 Plugin, can someone explain me how this OAuth 1.0 based…
Lucky
  • 11
  • 7
0
votes
1 answer

Woocommerce REST API with scribes-java library returns consumer key param missing error message

Hi guys I am trying to use scribe-java library to access the REST api via http.code looks package org.scribe.examples; import java.util.*; import org.scribe.builder.*; import org.scribe.builder.api.*; import org.scribe.model.*; import…
Misgevolution
  • 825
  • 10
  • 22
0
votes
1 answer

Authenticate to google apps script given oauth access tokens

I have seen google apps script's tutorial to migrate from oAuthConfig to oauth1 here But what if I have the access tokens with me already? I checked the oauth1 library code here and could not find a way to include access token here. Is there any…
rahulserver
  • 10,411
  • 24
  • 90
  • 164
0
votes
0 answers

Angular.js and Oauth 1.0 integration

Need help in using Angular.js with OAuth 1.0. I have checked that Oauth.io does not support the provider for Quickbooks api and Satellizer.js is also outdated as per the github spec. Any other code/js I can use for this integartion?
nimisha shrivastava
  • 2,357
  • 2
  • 16
  • 31
0
votes
1 answer

OAuth integration with QuickBooks using Scribe

QuickBooks has it's own SDK Libraries which can easily help to communicate between Third party. But their Library file size is around 6MB which is huge for a simple API integration. After so much of searching and finding the solution using Scribe I…
Santosh Giri
  • 109
  • 12
0
votes
1 answer

How to register a new consumer in JIRA?

I am trying to connect to JIRA using OAuth. I have followed this tutorial but when i want to create a new Application Link, it asks me to enter the URL of the application i want to link which seems strange in my case, since i want to connect a…
Bayrem Ben Alaya
  • 297
  • 1
  • 3
  • 16
0
votes
1 answer

Fitbit API OAuth 1.0a from Titanium (Appcelerator)

I am using Titanium (Appcelerator) to connect to Fitbit API. (http://www.appcelerator.com) I have been facing issues of getting "Invalid Signature" when I am trying to request for token. I'm using HTTPClient from Titanium.Network.HTTPClient class to…
Alvin Tandian
  • 171
  • 1
  • 9
1 2 3
12
13