我刚刚在我的项目中创建了两个phps,一个php将使用fetch URL服务向另一个php发布请求,它在我的本地开发服务器上运行罚款但是当我在google上部署它时它不起作用应用引擎并返回HTTP / 1.1 503服务不可用,UrlFetch每日配额不会超过。
这是我的代码
$postData = Array(
'myData' => 'value'
);
$context = [
'http' => [
'method' => 'POST',
'content' => http_build_query($postData)
]
];
$context = stream_context_create($context);
$result = file_get_contents('http://myapp.appspot.com/handler.php' , false, $context);
$serverResponse = json_decode($result, true);
$serverResponseHttpCode = $http_response_header[0];
echo $serverResponseHttpCode;
答案 0 :(得分:1)
This was your problem,SO并不是寻求支持的地方,但我知道Google会向Stackoverflow寻求支持。 唯一的另一种选择是购买Silver或Gold支持以访问服务台。