卷曲403被禁止

时间:2012-01-12 15:00:22

标签: php codeigniter rest curl

我收到了“您无权访问此服务器上的/rest/02/put.php”。使用以下信息。

这是put-service-consumer.php

<?php
$url = 'http://127.0.0.1/rest/02/put.php';
$fh = fopen('data.txt', 'r');
$data = file_get_contents('data.txt');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_INFILE, $fh);
curl_setopt($ch, CURLOPT_INFILESIZE, strlen($data));
curl_setopt($ch, CURLOPT_PUT, true);
curl_exec($ch);
curl_close($ch);
?>

这是put-service.php

<?php
$putdata = fopen("php://input", "r");
echo $putdata."here";
$fp = fopen("put_data_file.txt", "a");
while ($data = fread($putdata, 1024))
  fwrite($fp, $data);
fclose($fp);
fclose($putdata);
?> 

这是来自restful php webservice book的一个例子。虽然get和post工作的示例,但删除和放置的示例不起作用。 在此先感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

这可能有助于调试:https://chrome.google.com/webstore/detail/faceofpmfclkengnkgkgjkcibdbhemoc

这是我用来处理REST API的好工具。