Здравствуйте, есть код:
echo '<pre>';
$ch = curl_init('https://business.tinkoff.ru/openapi/api/v1/company');
curl_setopt($ch, 'Authorization: Bearer t.NP*********************token***********************w');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HEADER, false);
$html = curl_exec($ch);
curl_close($ch);
echo $html;
echo '</pre>';
Почему выдает такую ошибку? Не понимаю где провести аунтефикацию : The resource requires authentication, which was not supplied with the request