我使用以下代码使用 API 从第三方站点检索类别,但不幸的是,无法在其 API 处请求流上下文并导致内部错误。
仅供参考:它在zend框架下使用。
$header = "Authorization: Bearer ".$accestoken."\r\n"."Content-Type:text/xml";//.'Content-Type:application/xml';
$wsdl = 'wsdl url';
$context = stream_context_create(array('http' => array('header' => $header,'method'=>'GET')));
$options = array('stream_context'=>$context,'encoding'=>'ISO-8859-1','exceptions'=>FALSE);
$params = array ('accessToken' => $accestoken);
$response = $client->getAdCategories($params);
print_r($response);
所以请找到上面的代码并为这个问题提供一些解决方案。