Railroad Tycoon
Railroad Tycoon

Reputation: 147

Meetup API, how to get gender and birthday

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

Answers (1)

mlc
mlc

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

Related Questions