The Apache Oltu project delivers a Java development framework mainly aimed to build OAuth-aware applications. It is compliant with an OAuth 2.0 specification
Questions tagged [oltu]
53 questions
0
votes
1 answer
How to distinguish the device requesting the token OAuth2 on the server?
I have web application for issuing tokens to clients (OAuth2), where implimented authorization сode grant type. At the moment, each time the client requests (applications), wishing to receive a token to use resource api on behalf of one user - the…

Alexiuscrow
- 776
- 2
- 15
- 34
0
votes
1 answer
Retrieve email information of facebook account
When I get the facebook code, I set the scope in this way:
OAuthClientRequest request = OAuthClientRequest
.authorizationProvider(OAuthProviderType.FACEBOOK)
.setClientId(FacebookConfig.APP_ID)
…

notting65
- 143
- 2
- 9
0
votes
1 answer
The access_token invalid
I get an issue from oltu(version 0.31). I can get code and access_token successfully. But, if I access protect resource, the error said: invalid access token. when I print resourceResponse.getBody() still said invalid access token. If change to…

yutaolife
- 103
- 4
0
votes
2 answers
Why is Google OAuth2 returning java.io.IOException?
Within the last few weeks a suite of our applications using Google's Oauth2 authentication system and the Apache Oltu library have stopped working.
All attempts to register or log in via Google meet with the same error:
Login/registration action…

marqh
- 256
- 2
- 6
0
votes
1 answer
How do I retrieve OpenID 2.0 identifier (openid_id) when using Apache Oltu with Google OpenID Connect
How do I retrieve OpenID 2.0 identifier (openid_id) when using Apache Oltu with Google OpenID Connect.
Here is the authorization request I am using:
OAuthClientRequest oltu_request =…

Saqib Ali
- 3,953
- 10
- 55
- 100
0
votes
1 answer
Apache Oltu Build Failure to run the demo
I would like to build oltu and run the client demo however the build fails due to missing dependency on the client. mvn jetty:run fails with the same error
I would appreciate any help
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Oltu - Parent…

East2West
- 657
- 1
- 6
- 22
0
votes
1 answer
Using Oltu to connect to Doorkeeper
I'm attempting to authenticate against a rails app running as an OAuth2 provider running Doorkeeper.
I'm attempting to modify an example from the Oltu sources. The code that I have currently is:
public class OAuthClientTest {
public static void…

dysbulic
- 3,005
- 2
- 28
- 48
-1
votes
1 answer
Unable to get Yahoo OAuth 2 authorization
I am doing a poc project using Apache Oltu to authorize a Yahoo user using OAuth 2 spec. Following is the url that I am redirecting to. I get one of the 2 errors mentioned below. I see that many people come across this issue but I am not able to…

Jude
- 7
- 3