Questions tagged [openid4java]
34 questions
11
votes
2 answers
How or when to follow redirected OpenIDs?
I'm currently implementing OpenID authentication for a website. During testing, I've noticed that Google accepts different versions of claimed Google Profile IDs,…

sfussenegger
- 35,575
- 15
- 95
- 119
8
votes
0 answers
Accessing alternate email addresses for a Google Account using oauth
A Google account can have multiple email address associated with. e.g abc@yahoo.com can be an email address associated with a Google account, however if a user has Gmail setup, then the Gmail address becomes the primary email address associated…

Ankur Aggarwal
- 168
- 6
7
votes
1 answer
Spring Security 3.0 Google Apps open id sign in using OpenID4Java
I try to sign in using Google Apps open id with OpenID4Java library.
I discover the user's service using the following code in the consumer class:
try
{
discoveries = consumerManager.discover(identityUrl);
}
…

Ionel Bratianu
- 836
- 2
- 13
- 26
4
votes
5 answers
Maven "Could not resolve dependencies" for openid4java
Summary:
Running "mvn war:war" fails with errors including:
"The following artifacts could not be resolved: org.openid4java:openid4java:jar:0.9.6".
I'd chalk it up to the fact that I'm a Maven noob but I see that other people have posted to the…

Justin
- 6,031
- 11
- 48
- 82
3
votes
0 answers
ConsumerManager.verify() fails with "No service element found to match the ClaimedID / OP-endpoint in the assertion."
i am trying to implement openid authentication in a JSF2 application and everything seems to be working fine until the moment where the application needs to verify the openid-server's response (in my case stackexchange).
i have already checked out…

armin walland
- 89
- 5
3
votes
1 answer
How to integrate OpenID login authentication implementation (Java) with JBoss
I have implemented one service that perform operation required for OpenID login authentication using openid4java library.
Flow of application is some think like as below
JSP page for getting OpenID from user
JSP page 's actions servlet
Servlet…

Maddy.Shik
- 6,609
- 18
- 69
- 98
2
votes
0 answers
Authenticating with OpenID is failing in Java
I am trying to create a small application that uses OpenID4Java for openId auth.
I am able to successfully redirect user to OpenID provider site to login, but on returning to URL its verification fails.
Method that process response from openID…

Aqif Hamid
- 3,511
- 4
- 25
- 38
2
votes
1 answer
openid authentication simple consumer
I am doing a project in which one part is openid authentication. I am using Java.
I downloaded the code from the below site:
http://www.ibm.com/developerworks/java/library/j-openid/index.html, it said that he used wicket.
I tried to execute with…

Pratap M
- 1,059
- 3
- 21
- 31
2
votes
2 answers
openid4java ConsumerManager request/thread safe?
I am using openid4java in servlets. I have two servlets - one which performs first step (redirects user to login/accept application access) and second, which processes resulting information
In the documentation, there is written, that…

Martin Vejmelka
- 448
- 3
- 15
1
vote
1 answer
openid (gmail or myopenid)returns only email
As the question says :)
This is the request I made using openid4java:
DiscoveryInformation discovered = manager.associate(discoveries);
System.out.println("discovered");
// store the discovery information in the user's…

saad fahad alothman
- 11
- 3
1
vote
0 answers
Javascript OpenID Selector for mobile?
I've previously integrated Open Id authentication into my web app using openid4java and openid-selector. Now I'm working on a UI optimized for mobile web apps.
Can recommend something similar to openid-selector but geared towards mobile UI?
To be…

Justin
- 6,031
- 11
- 48
- 82
1
vote
1 answer
Getting a map from PageParameters in Wicket 1.5
I'm trying to migrate an application using OpenId4Java to Wicket 1.5. Using the migration notes I've gotten everything to work.
Except one thing: Before Wicket 1.5 PageParameters was a map which was perfect since OpenId4Java's ParameterList took an…

Alvin
- 178
- 8
1
vote
1 answer
Verification failure while using openid4java for 'login with google'
I am using openid4java library for implementing the 'login with google' functionality in a spring-mvc application.
It works fine on my local tomcat server but on the remote server it has suddenly stopped working. It was working fine before there…

naiquevin
- 7,588
- 12
- 53
- 62
1
vote
1 answer
OpenID+OAuth for YouTube using openid4java
My application allows users to log in using OpenID from Google or Yahoo. There's also a feature which allows users to upload to YouTube. Some users arrive via a YouTube context with the purpose of creating something and uploading to YouTube. These…

juell
- 4,930
- 4
- 18
- 19
1
vote
1 answer
How to logout using openid4java API?
After verifying/validating with provider, I want to logout from provider application (or invalidate provider application session). Please let me know which openid4java API to use.
Note: InMemoryConsumerAssociationStore.remove( opURL, handle) is not…

lupchiazoem
- 8,026
- 6
- 36
- 42