GAE Web サイトに Google 認証ログイン モジュールを追加しても問題ありません。
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 からサインアウトすると、Web クライアントは「SACSID」を含む Cookie 名を保持したままになり、Google アカウントがまだ有効であると見なされます。そのような問題をどのように克服するのですか?