Как указать область открытых идентификаторов в openid4java 0.9.5
my url @ development: http://192.168.0.1:8888/com.company.MyEntryPoint/MyEntrypoint.html my url @ live env: http://www.example.com/com.company.MyEntryPoint/MyEntrypoint.html
Мне нужно, чтобы пользователи проходили аутентификацию с использованием открытого идентификатора, вот как я хочу, чтобы моя область была: *.company.MyEntryPoint
Я написал простой код для указания области:
AuthRequest authReq =
manager.authenticate(
discovered,
returnToUrl,
"*.company.MyEntryPoint"
);
это не работает. Исключение:
org.openid4java.message.MessageException: 0x301: Realm verification failed (2) for: *.company.MyEntryPoint
at org.openid4java.message.AuthRequest.validate(AuthRequest.java:354)
at org.openid4java.message.AuthRequest.createAuthRequest(AuthRequest.java:101)
at org.openid4java.consumer.ConsumerManager.authenticate(ConsumerManager.java:1073)
Любопытно, что из всех комбинаций, которые я пробовал, работали следующие:
AuthRequest authReq =
manager.authenticate(
discovered,
returnToUrl,
"http://localhost:8888/com.capgent.MyEntryPoint"
);
Это не решает мою проблему, а скорее усложняет ее:)
Согласно Google и Open ID спецификации это должно было сработать
полный фрагмент кода:
List discoveries = manager.discover(clientUrl);
DiscoveryInformation discovered = manager.associate(discoveries);
AuthRequest authReq = manager.authenticate(discovered, returnToUrl,"*.company.MyEntryPoint");
FetchRequest fetch = FetchRequest.createFetchRequest();
fetch.addAttribute("email", "http://schema.openid.net/contact/email", true);
fetch.addAttribute("country", "http://axschema.org/contact/country/home", true);
fetch.addAttribute("firstname", "http://axschema.org/namePerson/first", true);
fetch.addAttribute("lastname", "http://axschema.org/namePerson/last", true);
fetch.addAttribute("language", "http://axschema.org/pref/language", true);
authReq.addExtension(fetch);
String returnStr;
if (!discovered.isVersion2())
{
returnStr = authReq.getDestinationUrl(true);
}
else
{
returnStr = authReq.getDestinationUrl(false);
}
Что я здесь не так делаю?
1 ответ
returnStr = authReq.getDestinationUrl (false); => returnStr = authReq.getDestinationUrl (true);