Questions tagged [scribe]

Scribe is a simple OAuth library for Java

Scribe is a library for OAuth-signing HTTP requests.

It's written in java but you can use it from other JVM languages as well (like Groovy or Scala).

It's really really simple and has low memory footprint which makes it the ideal choice for Android applications.

You can find more info about Scribe in the home page:

https://github.com/scribejava/scribejava

334 questions
3
votes
1 answer

integrating linkedin into my application using scribe 1.3.1.jar

I am using scribe 1.3.1.jar. I have successfully authenticated user with twitter using this jar. But I am facing problem while authenticating user with linkedin using the same jar. I am getting this error while obtaining access Token. I have…
Charu Jain
  • 852
  • 1
  • 7
  • 18
3
votes
1 answer

Setting up client Google Tasks App

My Question: How do I properly setup the Google Tasks client library api so I can build my app? (i.e. this may be just a dependency problem due to poor documentation). The problem: Google Tasks has unfortunate lower support so the documentation on…
kentcdodds
  • 27,113
  • 32
  • 108
  • 187
3
votes
1 answer

OAuth protocol / java- Scribe : storing the token?

I've been playing with the [scribe API][1] and a basic example e.g: https://github.com/fernandezpablo85/scribe-java/blob/master/src/test/java/org/scribe/examples/TwitterExample.java In a command line oriented interface, the user is asked to open a…
Pierre
  • 34,472
  • 31
  • 113
  • 192
3
votes
2 answers

Grails grails-oauth-scribe linkedin redirect

I am trying to use the new oAuth 2.0 plugin for Grails to consume LinkedIn resources. With my code, I am able to get to LinkedIn authorization page where I can grant my app permission to access my LinkedIn account info. The problem is that once I…
jason
  • 3,821
  • 10
  • 63
  • 120
3
votes
1 answer

Sun.security cannot be found after upgrading Java

I have an application created with Play 2.0. I implemented scribe-java library to use some OAuth services. Until today everything was fine but when I upgrade jdk and reboot the server I couldn't use scribe-java library. It seems it uses some classes…
burak emre
  • 1,501
  • 4
  • 22
  • 46
3
votes
0 answers

Scribe twitter example with callback not working?

I tried the example, on the scribe page, but with a callback. I always get the error "Could not authenticate with OAuth." the moment i try to use the returned access token. service = new ServiceBuilder() .provider(TwitterApi.class) …
webstrap
  • 1,004
  • 1
  • 10
  • 24
3
votes
1 answer

scribe 1.3 share request to linkedin API return a 401 - unauthorized

I'm trying to send a share content to my linkedin from my web application, but it looks like I'm doing something wrong. This is my java code: String payload = ""+ "" + …
anti
  • 71
  • 1
  • 7
2
votes
2 answers

How to authenticate linkedin users with java using scribe in xPages

I am trying to authenticate linkedin users for my site. I am using Scribe to handle the authentication. I am trying to do this in a two step process. step1 just gets the correct url and redirects the user to the confirmation page. this is working…
Thomas Adrian
  • 3,543
  • 6
  • 32
  • 62
2
votes
1 answer

OAuth Vimeo with Scribe (Java)

Note: You may be able to help me with this just by directing me to a place that explains well how to interface with web services. But help on this specific problem would be greatly appreciated! I'm having a really hard time understanding how OAuth…
kentcdodds
  • 27,113
  • 32
  • 108
  • 187
2
votes
1 answer

Doing oauth with Scribe for GWT

I'm trying to implement "Twitter" login for my web application. I use scribe to simplify things a bit. My implementation relies of GWT RPC mechanism to get the Authorization url back to the client so the client can call a popup window to redirect…
quarks
  • 33,478
  • 73
  • 290
  • 513
2
votes
1 answer

Getting user Email Yahoo Oauth (using Scribe-Java API)

Trying to access user profile from Yahoo using Oauth system and for that i am taking help of Scribe-Java API its working fine except one issue whcih i am sure not related to the API i am using In my yahoo profile i have following settings Yahoo!…
Umesh Awasthi
  • 23,407
  • 37
  • 132
  • 204
2
votes
1 answer

Vimeo search API with Java and Scribe

In its API Vimeo engineers are claiming that we should be able to search without access token, I have spent hours and unfortunately cannot get it to work, I'm not sure if I'm doing something wrong, So please help if you have done this…
nightograph
  • 2,179
  • 5
  • 31
  • 49
2
votes
0 answers

401 response when do a POST using scribe oauth java

This does NOT happen when I use it with a GET. i.e. this DOES NOT WORK: ProxyAuthenticator pa = new ProxyAuthenticator(); Authenticator.setDefault( pa ); OAuthService service = new ServiceBuilder().provider( TwitterApi.class ).apiKey( strAPIKey…
Mohammad Najar
  • 2,009
  • 2
  • 21
  • 31
2
votes
2 answers

Getting access token from refresh token failing with invalid_grant error, and Bad Request OR Token has been expired or revoked as error description

Using Java OAuth2 client library: scribe 1.2.0 (https://github.com/scribejava/scribejava) I am able to get refresh token from the authorization code (i.e; by making POST call to https://accounts.google.com/o/oauth2/token with client_id,…
Dreamer
  • 3,371
  • 2
  • 34
  • 50
2
votes
1 answer

OAuth automatic login without user clicking 'LogIn' button

I am trying to login to Facebook using the OAuth log-in mechanism of Scribe which builds a URL…
Vishnukk
  • 524
  • 2
  • 11
  • 27