I tried to set the attendance of a user from my server, but I always get an error. Any ideas?<?php$ch = curl_init();curl_setopt($ch, CURLOPT_URL, "https://api.meetup.com/8355172/events/117871412/attendance");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_POST, true);$data = array('member' => '47849672','status' => 'noshow','key' => '#######'); //noshow, attendedcurl_setopt($ch, CURLOPT_POSTFIELDS, $data);$output = curl_exec($ch);echo('<br /><br /><br />');$info = curl_getinfo($ch);curl_close($ch);print_r($output);print_r($info);?>
--
--
You received this message because you are subscribed to the Google
Groups "Meetup API" group.
To unsubscribe from this group, send email to
meetup-api+...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/meetup-api?hl=en?hl=en
---
You received this message because you are subscribed to the Google Groups "Meetup API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to meetup-api+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.