環境
我正在運行AppEngine Cloud端點以及引導JavaScript UI和Google SQL數據存儲。Google Cloud端點API獲取404
問題
當JavaScript調用gapi.client.load它得到404 API瀏覽器作品,當本地運行JavaScript的工作...它只是試圖通過JavaScript,我得到加載API時失敗。
這裏的錯誤,因爲它出現在Chrome:
GET https://MyAppID.appspot.com/_ah/api/discovery/v1/apis/myAP…%2Cversion%2CrootUrl%2CservicePath%2Cresources%2Cparameters%2Cmethods&pp=0 404 ()
zu @ cb=gapi.loaded_0:83
n @ cb=gapi.loaded_0:83C
u @ cb=gapi.loaded_0:83
(anonymous function) @ cb=gapi.loaded_0:84
g @ cb=gapi.loaded_0:55
c @ cb=gapi.loaded_0:46
它再其次是「無法讀取屬性」,因爲它無法發現它沒有加載API中的方法的另一個例外。
代碼
我的index.html頁面代碼:
,我認爲這是正確的,所以我也將包括我appengine.xml:
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>MyAppID</application>
<version>1</version>
<threadsafe>true</threadsafe>
<use-google-connector-j>true</use-google-connector-j>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
</appengine-web-app>
and my web.xml:
<?xml version="1.0" encoding="utf-8" standalone="no"?><web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
<servlet-name>SystemServiceServlet</servlet-name>
<servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class>
<init-param>
<param-name>services</param-name>
<param-value>com.lthoi.myAPI</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>SystemServiceServlet</servlet-name>
<url-pattern>/_ah/spi/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
如果任何人都可以想到其他地方的錯誤,我很樂意粘貼其他文件。
檢查您的應用程序日誌中是否存在「/ _ah/spi/BackendService.getApiConfig'或'/ _ah/spi/BackendService.logMessages'的請求。如果有錯誤,您需要修復它們。 – saiyr