Instagram API をクエリしようとしましたが、CURLOPT_RETURNTRANSFER が想定どおりに機能していないようです。CURLOPT_RETURNTRANSFER は true に設定されていますが、応答が返ってこないのはブール値だけです。私がCURLOPT_RETURNTRANSFERを真に読んだことから、以下でそうしました。ご意見をお聞かせください。ありがとう
public function __construct($uri) {
$this->handler = curl_init($uri);
$this->_setOptions();
}
protected function _setOptions() {
curl_setopt($this->handler, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->handler, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($this->handler, CURLOPT_USERAGENT, self::DEFAULT_USER_AGENT);
}
public function getResponse() {
$response = curl_exec($this->handler);
curl_close($this->handler);
return $response;
}