Questions tagged [meetup]

Meetup is an online social networking portal that facilitates offline group meetings in various localities around the world.

Meetup allows members to find and join groups unified by a common interest, such as politics, books, games, movies, health, pets, careers or hobbies. Users enter their postal code or their city and the topic they want to meet about, and the website helps them arrange a place and time to meet.

Useful Links

Meetup API Documentation

73 questions
4
votes
2 answers

Fetching nearest events with user location using meetup.com GraphQL API

I am trying to find out a way to fetch nearby events using GraphQL meetup.com API. After digging into the documentation for quite some time, I wasn't able to find a query that suits my needs. Furthermore, I wasn't able to find old, REST,…
4
votes
2 answers

Programmatic authentication with oauth2

We have used the API of some organization for some time, but now they are starting to use OAuth2 for authentication. Their API is completely used programmatically by our application. So now we have to authenticate with OAuth2 so we can use their API…
wdc
  • 2,623
  • 1
  • 28
  • 41
4
votes
0 answers

How to generate waze meetup link with web fallback?

I want to sent to the users of a website an email with a link to navigate to a Waze location. I'm using an URL like this one: http://waze.to/?ll=9.9397690,-84.1442870&navigate=yes And it works pretty good, but the problem is that when the user…
jpgc
  • 764
  • 5
  • 19
3
votes
2 answers

Convert JSON to CSV with Python 3

I need to get some data from the Meetup API, convert the JSON I get into a CSV, all of that in Python 3. I've never worked with JSON or Python, so I've run into some issues. Getting the data is not a problem, but I can't seem to parse the JSON…
alena
  • 61
  • 1
  • 1
  • 12
3
votes
2 answers

How can I get a unique identifier associated with a meetup access token?

I have implemented a simple api in python to get an OAuth2 access token from a user in meetup. How can I get a unique identifier from that user, using the access token, other than the token itself? For example, if I'm given an access token, how can…
user1876508
  • 12,864
  • 21
  • 68
  • 105
3
votes
3 answers

How do I convert the "time" from the Meetup API to a recognizable format?

http://www.meetup.com/meetup_api/docs/2/event/ Here's the Meetup API's definition of time: Event start time in milliseconds since the epoch, or relative to the current time in the d/w/m format. Here's the type of value I see returned in the…
LNA
  • 1,427
  • 3
  • 24
  • 37
2
votes
0 answers

How to get main picture of an event with Meetup API V3

I am trying to switch from Meetup API V2 to V3 as V2 will be deprecated soon. However, I can't find a way to get main picture of an event with that new version. With APi V2, I was able to get the main picture with /2/events and a link to the picture…
Lolincolc
  • 21
  • 2
2
votes
0 answers

R Building a JSON file by appending requests

I am attempting to build a JSON file from multiple requests, but it seems to go wrong at the second one already. I am using the Meetup API, and since the total count of the results is 600+, I need more calls than just the one that returns 200…
dnsko
  • 1,017
  • 4
  • 17
  • 29
2
votes
3 answers

Get more than 200 group members from the Meetup API

Using the Meetup API, I'm able to successfully get exactly 200 members from any given group. There are a lot of groups that have more members than that. I want to know how to get them all. The issue I haven't been able to find where &page=### is…
Ash Ryan Arnwine
  • 1,471
  • 1
  • 11
  • 27
2
votes
2 answers

Access JSON data from external JavaScript

I would like to use vanilla JavaScript to access some MeetUp API data. I am using the following code on my website: function addScript(src) { console.log(src); var s = document.createElement( 'script' ); s.setAttribute( 'src', src ); …
londonfed
  • 1,170
  • 2
  • 12
  • 27
2
votes
1 answer

http error 400 with "meetup" API

I'm trying to hook my website to Meetup.com. Instructions Everything works when I request authorization. However when I try to get the access token, I keep getting: http error 400: bad request. Here is my code: def meetupauth(request): r…
anc1revv
  • 1,563
  • 7
  • 24
  • 42
1
vote
0 answers

Is there a way, I can get all groups from Meetup API without specifying query value in keywordSearch ? or using a regex

Can I get all groups without specifying keyword or giving some regex to the Meetup Graph QL API ? My objective is to get all groups for a particular lat, lon and radius. Here is my query: { keywordSearch( filter: { query:…
1
vote
0 answers

How do I create a MeetupAPI key?

I am trying to scrape some data in Python (see tutorial) using the MeetUP API (see documentation). However I was not able to figure out how I can create an API key to continue my code. Can anyone help me? I thought the key was the OAuth registration…
1
vote
2 answers

Mac app to share screen region in meeting apps

I'm teaching to python programming some kids with google meet. Google meet does not allow share screen region, so I'm looking some app free/open source to share only screen region in callings. I'm already test camtwist, but it does not output good…
cristhiam
  • 496
  • 1
  • 4
  • 17
1
vote
0 answers

How to integrate Meetup.com calendar into a Wordpress Website with OAuth2?

How to integrate Meetup.com Calendar into your Wordpress Website with OAuth2? Does anyone know how to integrate Meetup.com into a Wordpress Website? In the past I've been using the…
1
2 3 4 5