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
1
vote
2 answers

how to NOT display empty objects from JSON file in DOM? Angular

I'm using the Meetup API to display members photos As you can see, some objects don't contain that property so it shows a blank div on my DOM. How can I just grab the json file with only the objects with that property? or how can i display nothing…
Ken Ryan
  • 539
  • 1
  • 10
  • 31
1
vote
1 answer

Issues with OAuth 2.0 Library for Google Apps Scripts for MEETUP

I am using OAuth 2.0 Library for Google Spreadsheet for Meetup Api Code.gs function getMeetupService() { return OAuth2.createService('meetup') // Set the endpoint URLs, which are the same for all Google services. …
Vinod Gubbala
  • 676
  • 6
  • 16
1
vote
1 answer

how to get meetup access token on android, via oauth 2

my app needs to get user's meetup id. meetup uses oauth 2.0. found different pieces of code across the web, will paste in stackoverflow as answer to this question, for the next person.
tmr
  • 1,500
  • 15
  • 22
1
vote
1 answer

Fetching Email From MeetUp

Am looking to fetch attendees of my event in meet up. I search for the documentation and get the api to get the list of attendees Attendees list api But i don't see email address details in that response. I got the detail i mentioned below from…
CalixCaine
  • 33
  • 9
1
vote
0 answers

Meetup API finding groups where user is co-organizer

Looking through meetups API for groups, http://www.meetup.com/meetup_api/docs/2/groups/ , supposedly I can query groups where I am a member or organizer. Query member_id with an ID returns groups, but querying organizer_id returns nothing. Am I…
Devin Dixon
  • 11,553
  • 24
  • 86
  • 167
1
vote
3 answers

Modifying user.profile using Accounts.onCreateUser for loginWithMeetup

When a user creates an account using the the Meetup login package, I want to get a few more values such as the user's full name and URL to their profile picture then store them in user.profile. Currently, I'm checking if the service is "meetup",…
user2565148
  • 313
  • 2
  • 6
1
vote
1 answer

Syntax Error when converting “time” from the Meetup API to a recognizable format

Using the code below, I'm saving Meetup events to my database but am unable to save the time due to Meetup's time format. There are two other StackOverflow questions that cover this, but I got a Syntax Error when trying to implement them. Any…
user1724295
1
vote
0 answers

How to pull all Meetup interest tags as autocomplete tags for a site?

I have found the API and categories, http://www.meetup.com/meetup_api/docs/2/categories/. However I am not sure how to get all the interests themselves. The most categories I could get was 36 or so. I know however that the site has maybe a thousand…
CodeWalrus
  • 5,628
  • 1
  • 16
  • 18
1
vote
1 answer

Get Meetup events data through meetup open events live stream in php

I am trying to get meetup events data through meetup open event stream API. http://www.meetup.com/meetup_api/docs/stream/2/open_events/ I am using the following code for get data: // Open a stream in read-only mode if (!($stream =…
Ahsan aslam
  • 1,149
  • 2
  • 16
  • 35
1
vote
1 answer

Grabbing certain values in this JSON file from the Meetup API doesn't work

I'm working with the Meetup API. All seems to work, except I can't grab the value from item.venue.zip or item.venue.address_1 from the JSON. This is my code: $(document).ready(function(){…
LNA
  • 1,427
  • 3
  • 24
  • 37
1
vote
1 answer

Making GET requests to the Meetup API in PHP

I am using PHP's build in cURL library to make GET requests to the Meetup API. This is an example of a query I'm running to view every meetup group 25 miles from central…
usumoio
  • 3,500
  • 6
  • 31
  • 57
0
votes
2 answers

Wrong UNIX Timestamp From the Meetup API

I'm having a problem with the Meetup API and wondering if anyone has experienced something similar, or would know how to deal with the issue. There seems to be a problem with the timestamp coming back from my API call. The timestamp I'm getting back…
nathanshubert
  • 41
  • 1
  • 2
0
votes
0 answers

error creating event with Meetup's api (Python)

I am trying to use Meetup's api to automatically post events on the network, and I am following their guide but I still getting b'Must provide query string.' as a return. Does anyone know what I may be doing wrong? import requests authent_url =…
0
votes
2 answers

How to re-run the authentication in the r package meetupr?

I am trying to use the meetupr package from this repository: https://github.com/rladies/meetupr. According to the ReadMe, a token is created the first time when running a meetupr function. In my case the Meetup server had problems at the time when I…
0
votes
1 answer

Combining a looping listing query with specific parameters query

I have two separate working calls, defined below, which I am trying to figure out how to combine. The schema is specific to Meetup API, but I think general GraphQL-fu can help here! Call 1 gets a list of N Event IDs query($query:String!,$lat:…
ina
  • 19,167
  • 39
  • 122
  • 201