0

我正在使用目前有 2 个模块的 App Engine 服务器。我有用于端点和同步模块的默认模块。第二个模块用于将我的服务器与另一个同步。因此,我的同步模块从其他服务器获取数据,并且必须使用端点将其发送到默认模块。为此,我生成了 endpoints_client_library 并将该库添加到我的同步模块中。我尝试了很多案例,但我无法正确传达我的端点。每次我都会收到“401 Unauthorized”之类的错误。

所以我不知道这是否是在我的服务器上使用生成的端点客户端库的正确方法,或者是否有其他解决方案,也许更简单......

我只想将数据从我的同步模块发送到默认值。

如果您需要一些代码,即使它不是很完整并且根本不工作,只要说,我会的。

我正在使用的 URLFetch 代码:

AppIdentityService appIdentity = AppIdentityServiceFactory.getAppIdentityService();
AppIdentityService.GetAccessTokenResult accessToken = appIdentity.getAccessToken(Collections.singleton(scope));



URLFetchService fetcher = URLFetchServiceFactory.getURLFetchService();
FetchOptions options = FetchOptions.Builder.doNotFollowRedirects().disallowTruncate();
HTTPRequest request = new HTTPRequest(url, HTTPMethod.GET, options);

HTTPHeader userAgent = new HTTPHeader("User-Agent", "AppEngine-Google; (+http://code.google.com/appengine; appid: appId)");
request.addHeader(userAgent);
HTTPHeader autho = new HTTPHeader("Authorization", "OAuth "+accessToken.getAccessToken());
request.addHeader(autho);
HTTPHeader contentType = new HTTPHeader("Content-Type", "application/json");
request.addHeader(contentType);

HTTPResponse response = fetcher.fetch(request);

int code = response.getResponseCode();
String resp = new String(response.getContent());

System.out.println(code);
System.out.println(resp);

结果:

401

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "required",
    "message": "{\"class\":\"com.domain.server.cloud.CloudException\",\"code\":2}",
    "locationType": "header",
    "location": "Authorization"
   }
  ],
  "code": 401,
  "message": "{\"class\":\"com.domain.server.cloud.CloudException\",\"code\":2}"
 }
}
4

1 回答 1

2

遵循Java中的App Engine 模块中的模块间通信的一般准则。在第二个代码示例之后,它说您还可以使用URL Fetch Service进行异步流控制。

为了安全起见,文档继续建议被调用模块(您的端点)对请求进行身份验证。手动或基本扩展管理员登录解决方案通常不起作用,因为自动扩展是默认设置。Inbound-AppId 标头在您的场景中将是一个非常简单且安全的选择。

正如您愿意为您的问题添加更多详细信息一样,我很高兴尝试在此答案中添加更多详细信息。

于 2014-03-13T15:54:20.850 回答