http://www.meetup.com/group/events/219126470/などのイベントの rsvp ステータスを更新しようとしています。
$event_rsvp_url ="https://api.meetup.com/2/rsvp/?event_id=".$event_id."&key=".$this->meetup_api_key."&rsvp=no";
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL, $event_rsvp_url);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Your application name');
$query = curl_exec($curl_handle);
curl_close($curl_handle);
return $query;
これは私が得ているすべてです
string(0) ""