码迷,mamicode.com
首页 > Web开发 > 详细

Curl POST提交出现404

时间:2014-11-01 20:28:18      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   使用   sp   div   on   

使用curl 访问基于Authorization Basic认证页面,这是成功的代码

function postJsonData($json){
    $ch = curl_init("http://localhost/issues.json");
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

// Headers

    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
        "Authorization: Basic base64($username.$password)",
        "Content-Type: application/json",
    ));
//$filename = "test.json";  /// Change this path to yours
//$fd = fopen($filename, ‘r‘);
//curl_setopt($ch, CURLOPT_UPLOAD, TRUE);
//curl_setopt($ch, CURLOPT_INFILE, $fd);
//curl_setopt($ch, CURLOPT_INFILESIZE, filesize($filename));
    curl_setopt($ch, CURLOPT_POSTFIELDS, $json); // POST this data

// Send synchronously

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    $result = curl_exec($ch);
    curl_close($ch);
    return $result;
}

 

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); 修改成 curl_setopt($curl, CURLOPT_POST, true); 之后提交httpstatus 404,不知道为什么,记录一下

Curl POST提交出现404

标签:blog   http   io   os   ar   使用   sp   div   on   

原文地址:http://www.cnblogs.com/qifeng1991/p/4067612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!