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

View Vimeo private video with an OAuth token

Can anyone give a help in Vimeo API using scribe? My goal is to access a private video (which I uploaded) without having to force the user to put password (this process should be done in background). From what I understand / deduce from research is…
JMarques
  • 3,044
  • 4
  • 34
  • 55
55
votes
6 answers

Library for OAuth Provider (Java)

I'm looking for a Java library that helps me building an OAuth Provider. I must be able to receive OAuth signed requests and determine whether they are valid or not (checking the signature, timestamp and nonce values). Do you know if there's…
Pablo Fernandez
  • 103,170
  • 56
  • 192
  • 232
32
votes
5 answers

How to set up Java VM to use the root certificates (truststore) handled by Mac OS X

I get the following exception while using the scribe OAuth library. Caused by: javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be…
Tamas
  • 3,254
  • 4
  • 29
  • 51
19
votes
1 answer

flume vs kafka vs others

May be this question has been asked before but I think it is good to consider it again today given that these technologies have matured. We're looking to use one of flume, kafka, scribe, or others to store streaming facebook and twitter profile…
pranavsharma
  • 1,085
  • 2
  • 10
  • 18
10
votes
1 answer

Magento Rest "Admin role not found" error

I'm playing with scribe library (https://github.com/fernandezpablo85/scribe-java), trying to get access to a Magento store products, but I'm facing some problems (it's probably Magento configuration). I'm using the following code: OAuthService…
MatheusJardimB
  • 3,599
  • 7
  • 46
  • 70
10
votes
4 answers

Upload a video file by chunks

Yes, it's a long question with a lot of detail... So, my question is: How can I stream an upload to Vimeo in segments? For anyone wanting to copy and debug on their own machine: Here are the things you need: My code here. Include the Scribe library…
kentcdodds
  • 27,113
  • 32
  • 108
  • 187
9
votes
2 answers

How to create a oAuth request using java?

I need to make a connection with Viagogo website using oAuth. Referring to their documentation I need to create a request similar to the following one Using the example in step 1A, this means you may generate a signature base string that looks like…
J888
  • 1,944
  • 8
  • 42
  • 76
8
votes
1 answer

HTTP PUT to upload a file in Java

Edit: I think I've figured out how to do the binary data part. Double check it in the code, but I'm pretty sure I've got it right. Now I'm getting a new error when trying to complete the upload as described in the Vimeo API documentation Edit 2:…
kentcdodds
  • 27,113
  • 32
  • 108
  • 187
8
votes
3 answers

What are the main differences between Socialauth, Scribe-Java, and Spring Social?

I am new to OAuth, but want to find a good way to start, and use a library that has wide support What are the benefits and disadvantages of the following (there are probably more, but these are the Java based that I have found so…
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
8
votes
1 answer

Gradle custom repositories and dependency resolution

A project I'm developing requires scribe-java and crashlytics libraries. Both libraries are available from custom repositories. build.gradle looks like: buildscript { repositories { maven { url 'http://download.crashlytics.com/maven' } …
midnight
  • 3,420
  • 3
  • 36
  • 58
6
votes
1 answer

Using OAuth with Scribe on Android

Hi I'm using the scribe library for OAuth communication with LInkedIn. I have a login class and a query class. The login class creates a service to get my request token and secret and creates my access token. The access token is then saved to the…
Jeff Finn
  • 61
  • 1
  • 2
6
votes
3 answers

Bad Request 400 when making API call to Microsoft Graph

The error I'm getting from Microsoft Graph API is this error = { "code": "BadRequest", "innerError": { "date": "2017-04-10T19:37:08", "request-id": "973641dd-b150-4406-9f3b-fbcf6f7e5aa1" }, "message": "The MIME type 'text/html,…
dpark
  • 69
  • 1
  • 7
6
votes
4 answers

Java SSL DH Keypair Generation - Prime Size Error

I'm currently implementing Reddit OAuth2 login into my web app. The handshake and token exchange work fine when testing locally but when running on the server (hosted on 'OpenShift' DIY cartridge) I get the following…
ALP_Squid
  • 63
  • 1
  • 1
  • 6
6
votes
1 answer

Extending Interfaces in Go

Fairly new to go. I'm trying to modify this go scribe server implementation: https://github.com/samuel/go-thrift/blob/master/examples/scribe_server/main.go I'd like to pass a channel to the Log() func so I can pass scribe data to a separate go…
David
  • 728
  • 1
  • 7
  • 11
6
votes
2 answers

redirect_uri isn't an absolute URI

I am using Scribe API for facebook sign functionality, but getting following error after submitting the facebook authentication url. callback_url = http://localhost:18080/example/pub/social/facebook/signup/step2 OAuthService service = new…
user1989933
  • 131
  • 1
  • 1
  • 4
1
2 3
22 23