Get more data from Meetup API

I needed at least a name, but after checking the Meetup API I've added other data that I think might be useful.
https://www.meetup.com/meetup_api/docs/2/members/
This commit is contained in:
Jan Dvorak
2018-11-29 22:48:16 +01:00
committed by Ben Newman
parent 0fcc7ddd46
commit 8f2c2b5805

View File

@@ -10,6 +10,12 @@ OAuth.registerService('meetup', 2, null, query => {
return {
serviceData: {
id: identity.id,
name: identity.name,
lang: identity.lang,
link: identity.link,
photo: identity.photo,
country: identity.country,
city: identity.city,
accessToken,
expiresAt,
},