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
2
votes
2 answers

fail to retrieve request token for yahoo integration in android?

I am trying to integrate yahoo in my app. I am trying, private static final String YAHOO_CALLBACK_URI = "MyApp://oauth"; public static final String YAHOO_REQUEST_TOKEN_URL =…
Panache
  • 987
  • 5
  • 16
  • 35
2
votes
1 answer

Retrofit OAuth signing with okhttp-signpost get OAuthMessageSignerException for special character

I am using Retrofit 2 to make http request in Android App. The server I talk to require OAuth 1.0 Authorization. I use okhttp-signpost from here to handle OAuth signing. Here's my build.gradle for library included: compile…
Shuwn Yuan Tee
  • 5,578
  • 6
  • 28
  • 42
2
votes
1 answer

Connecting to Twitter streaming API with tracks with spaces using Apache HttpClient and signpost for Oauth?

Below is some code that tries to connect to Twitter using tracks with a space ("you will"). It uses Apache HttpClient and signpost oauth in more or less the manner tweetstream4j does. I…
dfrankow
  • 20,191
  • 41
  • 152
  • 214
2
votes
0 answers

Magento Service temporary unavailable

I'm trying to request the products from Magento using REST-API for Android I've create the authentication using Scribe. I read that is not meant for Android, therefore, I searched more and found signpost. here is my code private void…
M.Baraka
  • 725
  • 1
  • 10
  • 24
2
votes
1 answer

How to create a gwt.xml file for an external jar?

I have an external JAR signpost-core-1.2.1.1.jar (from http://code.google.com/p/oauth-signpost/), that I want to include into my Java GWT project. So I add this external JAR file to my build path in Eclipse and put theese imports to my Class: import…
JochenJung
  • 7,183
  • 12
  • 64
  • 113
2
votes
1 answer

Twitter API status update always returns "Incorrect signature"

I'm using Signpost as OAuth implementation for posting to Twitter. And implemented the GoogleAppEngineOAuthConsumer and GoogleAppEngineOAuthProvider classes, but since they're pretty trivial, so I'm not providing their sources here (yet). Here's my…
hleinone
  • 4,470
  • 4
  • 35
  • 49
2
votes
3 answers

jTwitter, oAuth, and Google App Engine. NoClassDefFoundError

I'm trying to use jTwitter to get an oauth instance to twitter with my consumer key/secret and access token/secret. This is well documented in the javadoc here. I have downloaded signpost, signpost-jetty, and the jtwitter library, but after…
D-Nice
  • 4,772
  • 14
  • 52
  • 86
2
votes
0 answers

Signpost not working

I use Tomcat7 with Eclipse. Steps I've done: Imported commons-codec-1.10.jar as External JAR Imported signpost-core-1.2.1.2.jar as External JAR Imported signpost-commonshttp4-1.2.1.2.jar as External JAR Checked them in "Order and…
user3688653
  • 85
  • 1
  • 7
2
votes
1 answer

java lang Verify Error making request on android

I'm trying to make a request to a RESTful API from an android app using retrofit to make the request, signpost to authenticate and retrofit-signpost to connect the two but I'm getting this error on the request: java.lang.VerifyError:…
DidierFuentes
  • 87
  • 2
  • 17
2
votes
1 answer

Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth)

I am using signpost for OAuth to access data from a Magento server. I have read various tutorials on the same and I reach to the point where we open a browser so that user can enter his credentials. However, as per my requirement I have to automate…
2
votes
0 answers

SignPost error using OAuth and get Error parsing data org.json.JSONException: End of input at character 0 of

I am accessing magento backend from my android app using consumer. and i am getting following response from the magento after authentication done manually. object(Zend_Http_Response)#16 (5) { ["version":protected] => string(3) "1.1" …
Satish Sojitra
  • 622
  • 6
  • 18
2
votes
1 answer

How can I do a Twitter Reverse Auth In Scala Play Framework?

I'm writing a play application (in scala) and I'm trying to perform the reverse-auth step that is outlined by twitter here: https://dev.twitter.com/docs/ios/using-reverse-auth The step sounds like an ordinary RetrieveRequestToken to…
Setheron
  • 3,520
  • 3
  • 34
  • 52
2
votes
2 answers

Communication with the service provider failed:null Twitter & android

I'm trying to use this code to get the twitter access token in my android application. The method "provider.retrieveRequestToken(consumer, CALLBACK_URL)" causes an exception and the log is "communication with the service provider failed:null". The…
2
votes
0 answers

How to authenticate POST requests to a RESTfull application using OAuth-Signpost and Apache HttpComponents?

I'm using OAuth-Signpost 1.2 to authenticate requests to a Magento RESTful application. GET requests were pretty easy to implement using simply HttpURLConnection, but, so far as I understand, for POST requests I'd have to also use a library like…
Liadz
  • 51
  • 5
2
votes
2 answers

How to send an image to a Javascript client using JSON from a Java server

I am working on Google Contacts API and I received all data and sending as string to JSON (javascript) but when I get an image from contacts I can receive image. How can I send it to JSON? How can send the image file to a URL? (Can I use…
VICKY-TSC
  • 405
  • 2
  • 5
  • 19