I'm new to APIs but managed to get a few standard Meetup.com API responses to work in my Rails app; now I need to customise. I've read through all the documentation, and I can't manage to find the right response url to suit my needs. I want the user to be able to search their city (or within 30 mile radius of their city) for events organised by a particular member. Any ideas? Thanks in advance.
What is the request url for a Meetup.com API to find all events in a particular city (entered by user) within a certain id?
362 Views Asked by codermama At
1
There are 1 best solutions below
Related Questions in HTTPRESPONSE
- How to get response from server every second in JSON?
- How to loop and get the specific value of the json object ,how can i use that json object to get the other entity present in that json object?
- How to call HttpResponse from external function?
- HttpResponseMessage.Content as an attachment for an email
- What is the correct way to return a specialized HTTP response?
- Handle http request that has timedout while in reality request was processed by server successefully
- Downloaded octet-stream then encoding as pdf; can't get line endings worked out
- Missing last 8 bytes of file when downloading from HTTPS
- AttributeError: 'HTTPResponse' object has no attribute 'replace'
- Is there any way to know whether the parent window is closed or not in django view?
- Django get a DOM object from an HttpResponse
- How to specify 1 to many and many to 1 relations in json-ld document?
- Unpredictable results when sending HTTP POST using DefaultHttpClient
- passing argument from one function to request.on nodejs
- Spring MV 3.2 Exception Response Mapping
Related Questions in API-DESIGN
- When do I use path params vs. query params in a RESTful API?
- Link to another resource in a REST API: by its ID, or by its URL?
- Json encode not able to fetch special characters from db in php
- How do you POST data to a database via URL?
- How to manage public and private resource in a RESTful API
- wrong number of arguments error while building a chainable ruby api
- rest api passing parameter on every request
- Should fields be added sparingly or generously in a GraphQL API?
- REST API: How to deal with processing logic
- Can a HTTP PATCH request create an resource?
- How to get WSDL for REST API?
- What do I need to do to connect a local Couchbase server with a Spring Boot API?
- What import statements am I missing to get this class to connect this couchbase server with my REST API?
- Javadoc/ API documentation and code co-evolution: Existing work, tools?
- Creating a client_id and registering an account using OAuth
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I only had a quick glance at the Meetup API docs, but it didn't appear to provide this functionality. You will therefore need to get more data and filter out the ones you don't want - probably want a cache of some sorts to avoid hitting their API too hard.
Using the GET /find/events end-point you can get events by lat/lng. In the response there is a collection
event_hosts, you would then use this data to remove events not organised by the particular member(s) you are looking for.Hope that helps