App Engine的Python 2.7运行时非常方便地将应用程序asserting the identity转换为另一个App Engine应用程序。
如上面的链接所述,使用app_identity
包的google.appengine.api
库,我可以将auth_token
插入到urlfetch
标头中。收到请求时,我可以验证X-Appengine-Inbound-Appid
标头信息。
我了解urlfetch
和google.appengine.api
软件包在Python 3.7运行时中不可用。
我的应用包含几个GAE项目,因此我使用此方法来验证我项目之间的api调用的身份(即,对于外部API /服务,我不需要它)。在App Engine的Python 3.7运行时中,推荐这样做的方法是什么?