PHP-通过cURL发送JSON始终返回“无访问权限”

我有以下JSON数据:

$.ajax({
    type: "GET",
    url: "http://www.example.com/test.PHP",
    data:"code=Sh9QA&token=0982ff3066a3c60dbd3ecf9bcafc801b",
    contentType: "application/json; charset=utf-8",
});

要将这些数据发送到http://www.example.com/test.PHP,我尝试使用以下代码

<?PHP

//API URL
$url = 'http://www.example.com/test.PHP';

//Initiate cURL.
$ch = curl_init($url);

//The JSON data.
$jsonData = array(
    'data' => 'code=Sh9QA&token=0982ff3066a3c60dbd3ecf9bcafc801b'
);

//Encode the array into JSON.
$jsonDataEncoded = json_encode($jsonData);

//Tell cURL that we want to send a POST request.
curl_setopt($ch, CURLOPT_POST, 1);

//Attach our encoded JSON string to the POST fields.
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);

//Set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json')); 

//Execute the request
$result = curl_exec($ch);

?>

但是,它总是使无访问权限恢复正常.

我的代码有什么问题?你能帮我解决吗?

Sorry about my English, it is not good. If my my question is not clear, please comment below this question.

解决方法:

首先检查http://www.example.com/test.PHP

Ajax系统不能与完整域名一起使用.

所以你应该使用/test.PHP

然后检查在您的站点或目标站点中发生的错误.

然后代码变成:

$.ajax({
    type: "GET",
    url: "/test.PHP",
    data:"code=Sh9QA&token=0982ff3066a3c60dbd3ecf9bcafc801b",
    contentType: "application/json; charset=utf-8",
    success: function(data, textStatus) {   
        alert(data);
        data = $.parseJSON(data);
    },
    error : function(data, textStatus, error){                  
        alert(data + "  : "+ textStatus);
    }
});

相关文章

IE6是一个非常老旧的网页浏览器,虽然现在很少人再使用它,但...
PHP中的count()函数是用来计算数组或容器中元素的个数。这个...
使用 AJAX(Asynchronous JavaScript and XML)技术可以在不...
Ajax(Asynchronous JavaScript and XML)是一种用于改进网页...
本文将介绍如何通过AJAX下载Excel文件流。通过AJAX,我们可以...
Ajax是一种用于客户端和服务器之间的异步通信技术。通过Ajax...