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

Instruments OSSignpost intervals not recording or displaying

I'm trying to use OSSignposter to capture intervals in our app for use in Instruments. The sample code here works in a new project. I see the intervals, signpost icons, etc. However, this same code (integrated into a much bigger app does not record…
Byron
  • 1,091
  • 11
  • 27
0
votes
2 answers

OAuth requestToken for freelancer.com api

Has anybody used freelancer.com api? I am not able to even retrieve the requestToken for it. I want it for android. I tried using the signpost library, but it gives the following error oauth.signpost.exception.OAuthNotAuthorizedException:…
dharmin007
  • 1,612
  • 16
  • 17
0
votes
1 answer

Issue with OAuth using signpost API on Netflix - OAuthCommunicationException

I tried to get Auth_url from retrieveRequestToken signpost API. It throws OAuthCommunicationException. When I used the same code for twitter(after changing consumer and provide), it works without issue. Please help me here. Thanks public class…
Vjy
  • 2,106
  • 3
  • 22
  • 34
0
votes
1 answer

Getting a 401 "unauthorized" when calling Google Docs API using SignPost from Android

I am able to call GET successfully and get lists of docs and spreadsheets from Google Documents List API and Spreadsheets API using OAuth with SignPost in Android. However, I have spent hours trying to make a successful POST call and keep getting a…
raminl
  • 1
  • 3
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
1 answer

Oauth token requests before provider credentials issuance

Please forgive me if I ask something stupid, I am a novice here. I need to implement OAuth in my Java application to authenticate against launchpad.net API. The documentation specifies an initiation of a token request with three parameters :…
SyCode
  • 1,077
  • 4
  • 22
  • 33
0
votes
1 answer

SignPost OAuthConsumer is not serializable

I'm using SignPost with Java to do a 3-legged OAuth integration. Most of the examples I see use Servlet sessions to preserve the OAuthConsumer across multiple requests, but that's not feasible for us because we use Hazelcast to manage a…
IcedDante
  • 6,145
  • 12
  • 57
  • 100
0
votes
1 answer

How can I send oauth_body_hash using Signpost?

The OAuth Request Body Hash extension to OAuth 1.0 specifies that consumers sending non-form-encoded request bodies should include the SHA1 hash of the request body in the Signature Base String as an oauth_body_hash parameter. Signpost does not have…
user69173
0
votes
1 answer

Twitter Login issue : twitter4j and singpost lib

HI I am trying to login threw signpost library in my android app, it is working good but while login sometimes the web dialog does not update login status. it keeps me showing the enter username and password field. when I cancel the dialog and try…
Rajiv yadav
  • 823
  • 8
  • 24
0
votes
2 answers

OAuth Authentication with Evernote (Using Java+Signpost)

I'm attempting to use OAuth authentication to connect to a variety of services. For this most part, this works (tested with twitter/photobucket), but with evernote, I'm receiving a 400 response code. What's wrong here? OAuthConsumer consumer = new…
Stefan Kendall
  • 66,414
  • 68
  • 253
  • 406
0
votes
3 answers

Unable to use Java Signpost to properly OAuth (with Discogs)

I'm trying to use Java SignPost to get Oauth support from discogs If I call this method it provides a url to a website, then if I login I get a verification code, so far so good. public static String requestDiscogsAuthorization() throws…
Paul Taylor
  • 13,411
  • 42
  • 184
  • 351
0
votes
1 answer

Signpost Oauth and post parameters

I am using signpost with google appengine (java) to send a status update to twitter. OAuthConsumer consumer = new DefaultOAuthConsumer("AAA", "BBB"); consumer.setTokenWithSecret("CCC", "DDD"); URL url = new…
Michael
  • 1,321
  • 1
  • 13
  • 27
0
votes
1 answer

Quickbooks Online filtering with Signpost returns 401 error

I was able to get Signpost work with QuickBooks Online using HttpPost. However when I tried querying with filters, I got 401 error every time. After contacting support, I was informed that this is a known bug. They pointed me to an example in C#. I…
0
votes
1 answer

Error code 400 With Evernote OAuth (Signpost)

I am trying to connect to Evernote with OAuth and Signpost using one of the examples I saw in the dev forums, but for some reason I keep getting error code 400 (Bad Request). Here is the code: public static void main(String[] args) throws Exception…
aftrumpet
  • 1,189
  • 2
  • 16
  • 28
0
votes
0 answers

Oauth invalid credentials on creating event in google calendar

I am using signpost to create event in google calendar. After crossing all oAuth flow and trying to add event i am getting follow error. "error": { "errors": [ { "domain": "global", "reason": "authError", "message": "Invalid…
Sureshkumar Menon
  • 1,165
  • 7
  • 27
  • 49