这是我第一次尝试在Android Studio项目中使用GAE端点连接。所以,我只是按照Google提供的说明(https://cloud.google.com/tools/android-studio/app_engine/)。但是每次尝试构建或运行后端模块时,我都会收到403错误。以下是信息:
Error:Execution failed for task ':backend:appengineEndpointsGetClientLibs'.
> There was an error running endpoints command get-client-lib: 403 Forbidden
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 403 (Forbidden)!!1</title>
<style>
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
</style>
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
<p><b>403.</b> <ins>That’s an error.</ins>
<p>Your client does not have permission to get URL <code>/_ah/api/discovery/v1/apis/generate/rest</code> from this server. <ins>That’s all we know.</ins>
通常我可以通过在“设置”中启用代理来抑制此类问题。但是对于这个错误,经过谷歌搜索3天并尝试所有解决方案在我的脑海中闪现,没有任何改变。有人遇到过同样的错误吗?或者知道解决方案/建议?
修改 我运行模板Endpoint项目与示例MyBean和MyEndpoint类没有任何更改。这是相关的build.gradle文件:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.appengine:gradle-appengine-plugin:1.9.18'
}
}
repositories {
mavenCentral();
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'appengine'
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
dependencies {
appengineSdk 'com.google.appengine:appengine-java-sdk:1.9.18'
compile 'com.google.appengine:appengine-endpoints:1.9.18'
compile 'com.google.appengine:appengine-endpoints-deps:1.9.18'
compile 'javax.servlet:servlet-api:2.5'
}
appengine {
downloadSdk = true
appcfg {
oauth2 = true
}
endpoints {
getClientLibsOnBuild = true
getDiscoveryDocsOnBuild = true
}
}
答案 0 :(得分:1)
Google阻止某些国家(包括伊朗)访问http://developer.google.com和http://apis.google.com,因此您遇到了问题。
您应该避免使用 Google App Engine ,因为隐私,可移植性以及其他一些问题。
可移植性问题
开发人员担心应用程序无法从App移植 发动机和恐惧被锁定在技术中。作为回应,那里 是一些创建开源后端的项目 app引擎的各种专有/封闭API,特别是 数据存储。 AppScale,CapeDwarf和TyphoonAE都是开放的一些 来源努力。
https://en.wikipedia.org/wiki/Google_App_Engine#Portability_concerns
您可以使用这些替代方案。