I am currently playing with the meetup API and I want to create users on my application using the meetup API so that these users will be able to join groups, create events and so on.
I am not sure whether what I am asking is possible.
Scenario
A user visits www.example.com and signs up for an account, the website hits
the endpoint to create a user on the meetup API, and the user is redirected
to their home screen on www.example.com.
The user is then able to upload profile images, search for groups and, and
and.
Thanks in advance!
I think the closest you could get to what you're asking for is to integrate with the Meetup OAuth for login & signup to your site. Once they're logged in via Meetup Oauth, you should be then able to add that user to the group by doing a POST to /:urlname/members
as described in the docs.