openid4java如何创建哑模式或无状态消费者

时间:2013-12-16 08:40:36

标签: java openid openid4java

// perform discovery on the user-supplied identifier
List discoveries = manager.discover(userSuppliedString);

// attempt to associate with the OpenID provider
// and retrieve one service endpoint for authentication
DiscoveryInformation discovered = manager.associate(discoveries);

// store the discovery information in the user's session
httpReq.getSession().setAttribute("openid-disc", discovered);

// obtain a AuthRequest message to be sent to the OpenID provider
AuthRequest authReq = manager.authenticate(discovered, returnToUrl);

如何在没有发现和关联的情况下创建哑模式或无状态消费者?

我已关注http://sureshatt.blogspot.com/2011/05/openid-dumb-mode-consumer-with.html,但openid4java仍然关注。

1 个答案:

答案 0 :(得分:1)

发现操作需要,以便OpenID正常工作。

关于哑模式,这里是你指出的博客文章的摘录:

  

请注意,默认情况下,使用者管理器在智能模式下工作,并且将尝试四次尝试与openid提供程序创建关联。由于我们已将尝试次数设置为零,因此该方法仅返回DiscoveryInformation对象,并且虽然方法的名称为“associate”,但不会进行关联。

根据它,该客户端程序 以哑模式运行。