您好我试图从其他网站获取数据,所以我使用了
$url = 'MY_URL' . $route . '/' . $id;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('url: ACCESS_URL', 'token: TOKEN'));
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, $type);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
$output = curl_exec($ch);
curl_close($ch);
return $output;
所以我得到301 Moved Permanently输出 上传后,我在本地机器上工作正常我得到了这个错误 ,任何建议
答案 0 :(得分:2)
我的问题是缺少组件if (e.getKeyChar() == 'e') { // Now it has an actual chance of working
答案 1 :(得分:-1)
您需要明确告诉cURL遵循重定向:
std::cout << static_cast<int>(a);