当我的工作空间中通过POST方法在名为asanatarget.php的文件中发生事件时,我正在从API(asana)接收数据
数据正确,收到后我可以将其存储在文件中。 看起来像这样:
{"events":"resource":xxx,"user":xxx,"type":"story","action":"added","created_at":"2019-02-20T14:48:09.142Z","parent":xxx}]}
在同一文件中,我使用GET方法使用AJAX将数据发送到新文件中:
asanatarget.php
<?php
if(isset($_SERVER['HTTP_X_HOOK_SECRET'])) {
$h = $_SERVER['HTTP_X_HOOK_SECRET'];
header('X-Hook-Secret:' . $h);
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<?php
$input = file_get_contents('php://input');
if ($input) {
$entries = json_decode(file_get_contents('php://input'), true);
file_put_contents('targetasanaDATA' . time() . '.txt', json_encode($entries));
?>
<script>
$( document ).ready(function() {
$.ajax({
type: "GET",
url: "/asanawebhook", // Working with laravel, the route is well defined
data: <?php echo json_encode($entries); ?>,
dataType: "json",
success: function(response){
console.log("success " + response);
},
error: function(jqXHR, textStatus, errorThrown) { // What to do if we fail
console.log(JSON.stringify(jqXHR));
}
});
});
</script>
<?php
}
?>
</body>
</html>
当我直接用测试数据加载asanatarget.php时,它工作正常,数据被传递到/ asanawebhook,但是当数据直接从api中传递时,则不起作用。 我检查了一下,数据总是正确的
答案 0 :(得分:1)
您的PHP脚本仅生成HTML页面(基本上是文本)。
JavaScript可以由浏览器解释和执行。但是,如果没有浏览器读取并执行此页面,则什么也不会发生。 PHP会生成一个网页,没有人阅读,然后一切就此结束。
您也可以使用PHP通过POST发送数据。您可以使用http_build_query()构建查询并使用file_get_contents()
。