Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google app engine google客户端加载程序忽略apiRoot和appId_Google App Engine_Polymer_Google Cloud Endpoints - Fatal编程技术网

Google app engine google客户端加载程序忽略apiRoot和appId

Google app engine google客户端加载程序忽略apiRoot和appId,google-app-engine,polymer,google-cloud-endpoints,Google App Engine,Polymer,Google Cloud Endpoints,我正试图在我的聚合应用程序API中使用谷歌云端点。 我有我的API加载到谷歌应用程序引擎,并可以探索它通过浏览器-一切都好在这里 同样-我可以通过Google cliend loader使用其他标准Google API(如plus): <google-client-loader id="plus" name="plus" version="v1" on-google-api-load="plusLoaded"> </google-client-loader> 所以,

我正试图在我的聚合应用程序API中使用谷歌云端点。 我有我的API加载到谷歌应用程序引擎,并可以探索它通过浏览器-一切都好在这里

同样-我可以通过Google cliend loader使用其他标准Google API(如plus):

<google-client-loader id="plus" name="plus" version="v1"
  on-google-api-load="plusLoaded">
</google-client-loader>
所以,看起来它是在试图从谷歌获得API,而不是从我的应用程序

我这边有什么遗漏吗?是否有任何使用和端点的工作示例?

来自Polymer docs:

要绑定到元素的大小写属性,请在属性名称中使用破折号大小写。例如:

<user-view first-name="{{managerName}}"></user-view>
<!-- Sets <user-view>.firstName = this.managerName; -->
从以下日期开始:

要绑定到元素的大小写属性,请在属性名称中使用破折号大小写。例如:

<user-view first-name="{{managerName}}"></user-view>
<!-- Sets <user-view>.firstName = this.managerName; -->
<user-view first-name="{{managerName}}"></user-view>
<!-- Sets <user-view>.firstName = this.managerName; -->
<google-client-loader app-id="my-application-id" ...>