在端点 App Engine 后端,我该如何设置
@Api(name=...
clientIds = {what-goes-here-exactly-1},
audiences = {what-goes-here-exactly-2}
)
在Android客户端中,我究竟该如何设置
credential = GoogleAccountCredential.usingAudience(this,
what-goes-here-exactly-3);
这里有冲突/混淆/不清楚的说明http://devthots.blogspot.com/ 和这里https://developers.google.com/appengine/docs/java/endpoints/consume_android#making-authenticated-calls
我在我的 API 控制台的 API 访问中生成了很多密钥,但不确定如何使用它们并附加/前置它们以在上述语句中使用。
谢谢。