Reputation: 147
According to the the help docs "gender" is an "optional fields parameter", but I can't get it when I use
request = requests.get("http://api.meetup.com/2/members?fields=birthday",params=params)
Is it possible for me to get the gender and birthday of members?
Upvotes: 1
Views: 100
Reputation: 1718
You can only get the gender and birthday of the currently-authenticated member. Meetup does not currently share this information with other members.
Upvotes: 1