почему google api отклоняет запрос curl при использовании CURLOPT_INTERFACE с указанием ip.получить пустой ответ от API URL.
$url = "https://www.googleapis.com/youtube/v3...";
$ch = curl_init();
curl_setopt($ch, CURLOPT_INTERFACE, "xx.xxx.xx.xx");
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
, пожалуйста, помогите мне ..