OAuth를 사용하지 않고 내 끝점 기능에 액세스하고 싶습니다.끝점은 localhost에서 작동하지만 앱 엔진에서는 작동하지 않습니다 (생략 된 https : //)
나는 Simple access to API의 가이드를 따라 코드를 약간 조정합니다.
localhost에서 API에 액세스 할 수 있습니다. 약 5 분 동안로드해야합니다. 그런 다음 탐색기 /_ah/api/explorer에 나타납니다.
하지만 앱 엔진에서 엔드 포인트 기능에 액세스 할 수 없습니다
기능 부하가하지만 난에 액세스 할 수 없습니다
var rootpath = "//" + window.location.host + "/_ah/api";
gapi.client.load('helloworldendpoints', 'v1', makeRequest, rootpath);
// callback gets executed
...
var request = gapi.client.helloworldendpoints.sayHello();
//any code below this does not get executed