在Php中卷曲xml响应

时间:2016-12-23 13:26:12

标签: php curl

我需要将Xml中的数据发布到服务器但是我使用了一个基本的卷曲帖子我有一个重定向页面到卷曲网址,但是当我使用像邮递员这样的东西它只能找到,我甚至试过生成的代码邮差,我得到了相同的结果(重定向) 这是我的卷曲

 $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, "URL");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, ["SAMLResponse"=> $xml]);
    curl_setopt($ch, CURLOPT_POST, 1);

    $headers = array();
    $headers[] = "content-type: application/x-www-form-urlencoded";
    $headers[] = "authorization: Basic CODE";

    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    $output = (curl_exec($ch));

0 个答案:

没有答案