我需要将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));