Questions tagged [signpost]

Signpost is a Java OAuth-1.0 framework under APL-2.0 license written and maintained by Matthias Käppler. Since OAuth-1.0 is deprecated in favor of OAuth-2.0 - use it only for legacy projects (until it's not updated to support OAuth-2.0).

Signpost is a Java OAuth-1.0 framework under APL-2.0 license written and maintained by Matthias Käppler.

Since OAuth-1.0 is deprecated in favor of OAuth-2.0 - use it only for legacy projects (until it's not updated to support OAuth-2.0).

Project page is http://code.google.com/p/oauth-signpost/. Source code could also be found on github at https://github.com/kaeppler/signpost.

86 questions
1
vote
0 answers

Will Retrofit handle this Signature method "HMAC-SHA256" using SigningInterceptor in Android?

Servers Signature method is getting changed from HMAC-SHA1 to HMAC-SHA256 will this get handled by retrofit or should I have to generate and pass it, if so how can this be done? Currently using https://github.com/pakerfeldt/okhttp-signpost this for…
1
vote
0 answers

How to make sure Instruments records complete signpost data?

I have an issue with Instruments (Version 11.3.1 (11C505)) where it doesn't record signposts correctly, even in windowed mode. I'm trying to record a large number (hundreds of thousands, possibly over a million, but hard to tell since I cannot get…
Alex Repty
  • 1,060
  • 1
  • 9
  • 17
1
vote
1 answer

Android Google App Engine OAuth difficulties

I have an Android / GAE application. We need to validate the Android user against GAE using OAuth. We're currently using the Signpost library for this. We've run through lots of the samples out there and we do seem to get a correct token. Our…
sampyxis
  • 11
  • 1
1
vote
1 answer

Verify or validate a signed request

A client is using signed requests (with SignPost I believe) to call my Spring boot REST API server, I'm supposed to validate or verify that signature before allowing the access to my resources. My question is how can I verify that…
Ayane
  • 453
  • 2
  • 8
  • 17
1
vote
0 answers

OAuth 1.0 oauth_verifier android

I have a problem in singpost, should return after redirecting oauth_verifier, but will return to the post of the same address, after switching to the browser and subsequent authorization to return the callback is oauth_verifier.I would somehow be…
1
vote
1 answer

Retrieve a list of a given user's tweets using Twitter API 1.1 and Retrofit

I'm trying to obtain a list of a user's tweets and I've run into some trouble when trying to authenticate my call to the API. I currently get a 401 when executing the code below: public interface TwitterApi { String API_URL =…
HBG
  • 1,731
  • 2
  • 23
  • 35
1
vote
1 answer

Where should you install signpost .jars in android studio?

I am trying to implement OAuth via signpost in an app and found this tutorial which looks like it is eclipse based. http://nilvec.com/implementing-client-side-oauth-on-android.html The relevent instructions:"We will use the excellent signpost Java…
Dr.Ew
  • 13
  • 4
1
vote
0 answers

Error while connecting Android to Magento Oauth using signpost(404 not found)

I am trying to get get access token from Magento Oauth from Android using signpost.For this I used the below code. final String MAGENTO_API_KEY = "xxxxxxxxxxxxxxxxxxx"; final String MAGENTO_API_SECRET = "xxxxxxxxxxxxxxxxxxxxx"; final…
Remees M Syde
  • 2,564
  • 1
  • 19
  • 42
1
vote
1 answer

Authenticating with Netflix: Netflix OAuth vs. SignPost OAuth: Which is correct?

With signpost 1.2: String authUrl = provider.retrieveRequestToken( consumer, callbackUrl ); Netflix API response: 400 oauth_consumer_key is missing I see how to…
Stefan Kendall
  • 66,414
  • 68
  • 253
  • 406
1
vote
0 answers

Android - logs from jar file

I am using the signpost library (JAR file) in my Android app to do OAuth. I want to investigate the signature generation logic of signpost for the request token stage. I need to somehow insert some logs into the JAR file to print values of certain…
Jake
  • 16,329
  • 50
  • 126
  • 202
1
vote
2 answers

Tumblr Login in Android using SignPost

I am trying to implement a tumblr login in my android app by following this example : https://github.com/jansanz/TumblrOAuthDemo. i can get the request token . but when i'm trying to retrieve the AccessToken , it gives me an Exception. Here is the…
Houcine
  • 24,001
  • 13
  • 56
  • 83
1
vote
1 answer

OAuts with Signpost - how to sign POST to get Access token

I'm working with client who provided me with somewhat vague instructions. Here's what I'm doing (using CommonsHttpOAuthConsumer as consumer and DefaultOAuthProvider as provider) I'm able to get response token from doing this: String requestToken =…
Bostone
  • 36,858
  • 39
  • 167
  • 227
1
vote
1 answer

Android: signpost lib signing request throws NullPointerException

In my simple tumblr client trying to fetch user info. Retrieving access and request tokens are ok. Some code snippets: CommonsHttpOAuthProvider provider = new CommonsHttpOAuthProvider( "http://www.tumblr.com/oauth/request_token", …
Ihor DIM
  • 689
  • 1
  • 10
  • 22
0
votes
1 answer

Android: Can't post tweet using OAuth and twitter

I am trying to send tweets to twitter via my android app. The libraries I'm using are signpost core, signpost commonshttp, and jtwitter. My code in my main activity is as follows: public class MainActivity extends Activity implements…
user1255273
  • 319
  • 2
  • 8
0
votes
1 answer

Android, Twitter and OAuth: Protocol Not Supported?

(post updated for working code) I've been trying to get my android app to authorize with Twitter and then catch the auth token with a callback URL in my app. I think I have something wrong in my AndroidManifest.xml though. From what I understand, if…
wufoo
  • 13,571
  • 12
  • 53
  • 78