0

我想使用 curl 发送以下标头:

curl -H 'Authorization: OAuth oauth_signature_method="PLAINTEXT",⤦
⤥oauth_consumer_key="xxx",oauth_token="xxx",oauth_signature="xxx"' ⤦
⤥'https://external.ningapis.com/xn/rest/apiexample/1.0/Photo/recent⤦
⤥?xn_pretty=true&fields=image.url,title&count=2'

以上命令用于命令行使用。任何人都知道如何使用 PHP curl 执行此操作?

4

1 回答 1

3

-Hfrom curl 命令行位于CURLOPT_HTTPHEADERPHP curlcurl_setopt中。

这应该是您需要的最基本示例:

$auth = 'Authorization: YOUR_KEYS';
$url  = 'https://external.ningapis.com/xn/rest/apiexample/1.0/Photo/recent?xn_pretty=true&fields=image.url,title&count=2';

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array($auth));
curl_exec($ch);
curl_close($ch);
于 2012-08-22T10:52:28.963 回答