相关问题:
我有一个 App Engine 标准 (Python) 环境(使用 webapp2),它将调用 Cloud Endpoint(不需要用户身份验证,但调用必须是服务到服务安全的),我想澄清一下如何使用 Cloud Endpoint Framework for App Engine Standard 执行此操作。
如果我采用上面(2)中描述的方法,这是否意味着我必须手动编辑lib/endpoints/endpointscfg.py get_openapi_spect
使用安全定义生成的 openapi.json 文件?该文档似乎更适合使用 Cloud Endpoints for OpenApi 的 GCE 和 App Engine Flex 环境,因此我是否必须编辑@endpoints.api
配置令人困惑。
或者,假设我正在从 App Engine 标准环境中拨打电话,我是否只能使用 urlfetch 和 AppIdentity:https ://cloud.google.com/appengine/docs/standard/python/appidentity/并断言身份端点?如果是这样,配置会是什么样子?