App Engine にデプロイされた Endpoints API があります。Google API Explorer を使用して、ログインを必要としない API メソッドへのリクエストを行うことに問題はありません。そのために使用している URL は次のとおりです。
https://developers.google.com/apis-explorer/?base=https://[MY_APP_ID].appspot.com/_ah/api
私が立ち往生しているのは、次のようなユーザーのログインを必要とする API メソッドの呼び出しです。
@ApiMethod(name = "config.get",
clientIds = {"[MY_CLIENT_ID].apps.googleusercontent.com", "com.google.api.server.spi.Constant.API_EXPLORER_CLIENT_ID"},
audiences = {"[MY_APP_ID].appspot.com"},
scopes = {"https://www.googleapis.com/auth/userinfo.email"})
public Config getConfig(User user) throws OAuthRequestException {
log.fine("user: " + user);
if (user == null) {
throw new OAuthRequestException("You must be logged in in order to get config.");
}
if (!userService.isUserAdmin()) {
throw new OAuthRequestException("You must be an App Engine admin in order to get config.");
}
...
API エクスプローラーの右上にスイッチがあり、クリックすると、スコープと承認を指定できます。私は userinfo.email スコープだけをチェックしてそれをやっています。違いはありません。私の呼び出しから得られる応答は次のとおりです。
503 Service Unavailable
- Show headers -
{
"error": {
"errors": [
{
"domain": "global",
"reason": "backendError",
"message": "java.lang.IllegalStateException: The current user is not logged in."
}
],
"code": 503,
"message": "java.lang.IllegalStateException: The current user is not logged in."
}
}
Endpoints が Trusted Tester フェーズにあった頃、アクセス トークンなどの代わりに ID トークンを取得するために OAuth2 Playground に手動の手順があったことを覚えています。それがまだ必要な場合、それについての言及はエンドポイントのドキュメントから消えたようで、API Explorer でトークンを交換する方法もわかりました。