Tagged Questions
3
votes
0answers
120 views
Examples for oauth1 using google-api-java-oauth
I've been looking for examples of authentication using the google oauth java package:
https://code.google.com/p/google-oauth-java-client/
I've managed to find examples for oauth2 authentication using ...
3
votes
0answers
158 views
Regarding accessing Digg API after getting access token
I am getting an exception and status of code as 400. What's the problem in my code?
OAuthConsumer consumer = new DefaultOAuthConsumer("API key","Secret",SignatureMethod.HMAC_SHA1);
OAuthProvider ...
3
votes
0answers
818 views
Yelp V2 API using SignPost from Java - INVALID_SIGNATURE
Trying to call the v2 api from a Java app (Android), utilizing the
SignPost oauth library. I have extracted my code into a standalone
version that can be run from the command line (no dependencies ...
2
votes
0answers
44 views
Serverside OAuth Login
I am getting confused.
I have to write an Java Serverapplication for an mobile application. We have our own user management in that application, meaning the user can register and login on our servers ...
2
votes
0answers
301 views
How to create a folder in Google Drive, using Java with OAuthRequest
I want to create a new Folder in Google drive, here is my code:
OAuthRequest request = new OAuthRequest(Verb.POST, "https://www.googleapis.com/drive/v2/files");
request.addBodyParameter("title", ...
2
votes
0answers
179 views
spring-social-google not sending clientId/clientKey
I'm attempting to add OAuth support to an existing Spring webapp to allow people to login with their Google/Facebook/Twitter/etc. accounts. To do this I'm using the 'spring-social' framework, and the ...
2
votes
0answers
409 views
Vimeo API Scribe Private Video
Can anyone give a help in Vimeo API using scribe (thanks, fernandezpablo85)? I'm all confused.
My goal is to access a private video (which I uploaded) without having to force the user to put password ...
2
votes
0answers
449 views
Imgur Api to Upload Photo
I am trying to upload photos into imgur using its API's through oAUth.
I have been able to get the access token from imgur (after authorizing and authenticating), but when i try to use this access ...
2
votes
0answers
655 views
Create “Provider” in Java with Oauth library?
I downloaded the examples (https://code.google.com/p/oauth/) compiled and loaded the provider and consumer WAR files to Apache Tomcat.
I configured provider.properties with:
Consumer_key=mysecret ...
1
vote
0answers
30 views
Authenticating to a Oauth 2-legged system
I'm trying to authenticate to a webservice using 2legged oauth. I have the next one working java example creating the authenticated URL using the signpost library:
String consumerKey = "KEY";
...
1
vote
0answers
69 views
Scribe (simple OAuth Java lib) and reverse auth token
I would like to use scribe for reverse auth token.
reverse auth token is for iPhone, however the first step of retrieving the request token I would like to do in the BE so I don't need to store the ...
1
vote
0answers
48 views
Login with your Google accout with OAuth2.0 [Blogger API]
We are developing an app for Android that you can login with your Google account and read, write, delete posts from Blogger. We have looked up many OAuth2.0 examples but none works and many of them ...
1
vote
0answers
32 views
oauth-20090825.jar. returning null for authorization url
I keep getting null?oauth_callback=x-opensocial-demo-app://callback from a function getAuthorizationUrl in oauth3leggedscheme. When I traced to the library, getAuth(providerName) is returning null. ...
1
vote
0answers
80 views
File not found Exception in linkedin integration
I tried to integrate linkedin for sharing the data using many tutorials and posts, but nothing helped, after login was not able to move to next page instead redirecting to the previous, finally ...
1
vote
0answers
185 views
Tumblr - OAuth callback to Java desktop application
I am writing a desktop app for Tumblr written in Java. I am attempting to get a PIN back from Tumblr using out-of-band request. When my app displays the 'Allow' or 'Deny' page in the browser, I hit ...