更新:解决了!
我需要使用cURL和PHP为学校项目授权给股票市场网站的API请求。
我从网站获得授权的例子是:
curl -H“授权:Bearer 12345678900987654321-abc34135acde13f13530”https://api-fxpractice.oanda.com/v1/accounts
那么,我是否必须这样设置:
$ch = curl_init();
$headr = array();
$headr[ ] = 'Authorization: Bearer myAPIKEYGOESHERE';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headr);
//Then I'd Place the Rest of parameters
感谢您的帮助,我真的很感激!