我有一个PHP-7应用程序需要从后端服务器访问Google Shopping API (OAuth2.0 ...)。换句话说,它必须使用CURL。我正在寻找尽可能完整的例子 - 来自任何来源。
我不想使用谷歌的代码,首先似乎没有使用CURL,其次似乎涉及7,000多个新的PHP源文件。
许多API似乎引用$_GET[]
,好像请求代理本身就是“网页”。在这种情况下,它不是:使用CURL进行请求,必须如此。
答案 0 :(得分:0)
这应该有效
$data = array("post" => $vars, "post2" => $vars2);
$data_string = json_encode($data);
$ch = curl_init('https://endpoint.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: Bearer ' . $oauth_key,
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$output = curl_exec($ch);