我正在尝试在我的第一个cURL请求之后立即执行cURL POST请求。 我是PHP和服务器端的新手。
我的第一个请求是GET。使用API响应,我正在执行 if错误-> curl_close 或 else->新的cURL POST请求。但是第二个请求什么也不返回。我尝试了“传统邮递员JSON请求”,该请求有效,所以问题出在我的PHP代码中。
/* First we try to have id user from his mail*/
$curl = curl_init();
$usermail = "user@mail.com";
//url = url + email
$gen_url = "https://myendpoint.com/manage/v1/user?search_text=";
$url = $gen_url.$usermail;
//GET request return all info about user, we do this to have his userid
curl_setopt_array($curl, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"Authorization: Bearer $tokenDecode",
"Content-Type: application/x-www-form-urlencoded",
),
));
$response2 = curl_exec($curl);
$err = curl_error($curl);
if ($err) {
echo "cURL Error #:" . $err;
curl_close($curl);
} else {
$userInfo = json_decode($response2, true);
$userId = $userInfo["data"]["items"][0]["user_id"] . "<br>";
/* We have the user_id, we can POST on user's additionnal fields */
$gen_url2="https://myendpoint.com/manage/v1/user/";
$url2= $gen_url2.$userId;
curl_setopt_array($curl, array(
CURLOPT_URL => $url2,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => "{'additional_fields':[{'id':98,'value':2}]",
CURLOPT_HTTPHEADER => array(
"Authorization: Bearer $tokenDecode",
"Content-Type: application/json",
),
));
$response3 = curl_exec($curl);
$err2 = curl_error($curl);
curl_close($curl);
if ($err2) {
echo "cURL Error #:" . $err2;
} else {
echo $response3; //Show nothing
}
}
我的GET请求工作正常,我可以返回我想要的东西。 但似乎我的第二个cURL请求没有发送,它没有返回任何响应。 是我做的方式还是认为它是错误的?还是我错过了什么?
谢谢
答案 0 :(得分:1)
如果GET请求成功,则可以在设置POST请求的数据之前通过curl_reset
(https://www.php.net/manual/en/function.curl-reset.php)重置curl数据。
答案 1 :(得分:1)
您可以通过对第二个请求再次进行cURL的初始化来进行尝试,如下所示
subpage.php?id=5
并在第二个请求代码中使用$ curl2
答案 2 :(得分:0)
POSTFIELDS行上的行情令人困惑,请尝试使用此
CURLOPT_POSTFIELDS => "{'additional_fields':[{'id':98,'value':2}]",