Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connect to Meet Up API to show all future meet ups on landing page #14

Open
Sun-Mountain opened this issue May 23, 2022 · 1 comment
Open
Labels
enhancement New feature or request

Comments

@Sun-Mountain
Copy link
Member

Review: https://www.meetup.com/api/general/

(May need to get MeetUp Pro, if so need to discuss as group then with Fearless/other sponsors)

@emanguy
Copy link
Member

emanguy commented Aug 25, 2022

It looks like if you're just reading information you don't need to be authenticated. Try the following request by doing a POST to https://api.meetup.com/gql :

query {
	groupByUrlname(urlname: "baltimore-code-and-coffee") {
		name
		upcomingEvents(input: {first: 5}) {
			edges {
				node {
					title
					eventUrl
					dateTime
					going
					venue {
						name
					}
				}
			}
		}
	}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

No branches or pull requests

2 participants