将GA身份验证登录模块添加到我的GAE网站我没有问题。
的web.xml:
<security-constraint>
<web-resource-collection>
<web-resource-name>All Access</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
</security-constraint>
但是当我从Google退出时,我的网络客户端仍然持有“SACSID”的Cookie名称,认为我的Google帐户仍然有效。如何克服这个问题?
答案 0 :(得分:0)
在您的应用中提供退出链接。退出Google帐户的用户仅影响第一方服务;您的用户必须与您的应用分开注销。