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
0
votes
1 answer

What is gem to Authenticating with the Meetup?

I am looking for the ruby/rails gem that deals with the Authentication API for Meetup.com http://www.meetup.com/meetup_api/auth/
khanh
  • 4,516
  • 10
  • 29
  • 48
0
votes
1 answer

Get more than 200 events from the Meetup API v3 using OAuth 2

Fetching more than 200 entries of Events was possible in the meetup API v2 and earlier using the PAGE and OFFSET params. Using the meetup API v3 (the only way since 2019-08-15) you can only add the PAGE param, OFFSET doesn't work/is not available…
pixi
  • 17
  • 3
0
votes
1 answer

meetup api DATE error

I got a problem with the v3 of api meetup.com Trying to request the api: GET https://api.meetup.com/find/upcoming_events?sign=true&key=VALID-API-KEY&lon=32.97&page=1000&lat=4.95&page=20&offset=0&end_date_range=2018-07-19424:00:00 Expected…
Benedikt Schmeitz
  • 223
  • 1
  • 4
  • 11
0
votes
1 answer

ReactJS mapping to API

import React, { Component } from 'react'; import axios from 'axios'; class Meetups extends Component { constructor(props) { super(props); console.log('in constructor'); this.state = { results: [], }; } …
0
votes
1 answer

meetup rate limit only 200, problems with getting other records

I am trying to get events for a meetup. The problem is I am only getting around 200 events. So, I tried doing an offset and specifying the pagination as specified in other stackoverflow question but is not working. It is giving me the same records…
user3570187
  • 1,743
  • 3
  • 17
  • 34
0
votes
0 answers

How to send latitude and longitude to Meetup API update event?

I can't seem to get an event to have a location. I have tried posting data as: { 'lat,lon': '11.11111,11.11111' } and { lat: '11.11111', lon: '11.11111' } and { lat: parseInt(11.1111, 10), lon: parseInt(11.1111, 10) } nothing seems to…
e-e
  • 1,071
  • 1
  • 11
  • 20
0
votes
3 answers

Meetup API using RoR. Getting NameError: uninitialized constant Event in the rails console

Looking for some help with the Meetup.com API I'm trying to add to my Rails app. My purpose is just to have a view of local meetups when you open the app. Here is my code so far: Routes.rb (at the bottom before the last 'end'): root…
DianaBG
  • 1,511
  • 3
  • 10
  • 13
0
votes
1 answer

Trouble getting Meetup APIs Access Token with Retrofit - Android

I am trying to implement OAuth 2 authentication for the Meetup API using retrofit. I have the Authorization code but I am having trouble getting the Access Token. Here is all the relevant bits of code: My onResume method: override fun onResume()…
DrkStr
  • 1,752
  • 5
  • 38
  • 90
0
votes
1 answer

Has meetup.com removed support for RSVP buttons?

I used to get the code to embed RSVP button for any meetup from here: https://www.meetup.com/meetup_api/buttons/. Seems like that page no longer exists. Does anyone know if they have removed support for it? What are the alternatives?
Mitul Shah
  • 7
  • 1
  • 8
0
votes
2 answers

Meetup API - listing events by category, within a distance from lat/lng - Javascript

I'm creating a web app that makes a front-end javascript request to the Meetup API to get a list of events, the query will be generated dynamically with the users lat/lng, specified distance, and a category id of 34 (tech). Having real problems…
Guy McLean
  • 103
  • 8
0
votes
1 answer

java.net.SocketTimeoutException: timeout while listening to meetup open_events streaming API

I am trying to listen to an endless stream from meetups open_events streaming API. For some reason I get a socketTimeoutException after (what seems to be) a random period of time. My code works for the meetups rsvps streaming API. I am using a…
DMJessieSP
  • 15
  • 1
  • 4
0
votes
0 answers

Meetup API - get past AND upcoming events

The docs say that you can pass a status into the request object as follows: Status may be "upcoming", "past" or both separated by a comma. The default is "upcoming" only But when I pass in "past,upcoming" as the value for status, no events are…
0
votes
1 answer

Integrating Meetup.com API with Mobile App

I wanted to get all the events from the Meetup.com whichever I have enrolled. I am not quite understanding :urlname. Can you please suggest me the API / REST Call. Thanks, Raja K
kulls
  • 845
  • 2
  • 12
  • 37
0
votes
1 answer

Meetup.com API create event with JSON data

I am trying to create an event on Meetup from a C# project. I am trying to use this API method. I have tried a number of things, now I have stripped it down to as simple as I could. My problem is, that when I send off the request I get Bad Request…
Tenshiko
  • 1,450
  • 3
  • 17
  • 33
0
votes
2 answers

Convert Jquery Ajax to Pure JavaScript Ajax

I want to convert Jquery Ajax to Pure JavaScript Ajax, i hope someone can help me, jQuery $.ajax({ type: "GET", contentType: "application/json; charset=utf-8", url: accessURL, dataType: 'jsonp', …
mmativ
  • 1,414
  • 14
  • 25