Skip to content

Instantly share code, notes, and snippets.

@shumaker100
Created September 16, 2020 19:17
Show Gist options
  • Save shumaker100/ac2698c40f19eb0b874d81e55a44c2e8 to your computer and use it in GitHub Desktop.
Save shumaker100/ac2698c40f19eb0b874d81e55a44c2e8 to your computer and use it in GitHub Desktop.
Meet UP API Assignment 2
Does this API require authentication?
Yes
Does this API support CORS?
Yes
Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint.
(HINT: You may need other keywords to find this endpoint.)
- https://api.meetup.com/find/upcoming_events
- What are the limitations placed on the number of requests that can be made?
There is a maximum number of requests that can be made in a given time frame.
- List the errors that you can expect when making calls to this API.
400 bad request - "when there was a problem with the request"
401 unauthorized - "when you don't provide a valid token"
429 too many requests - "when you've gone over your request rate limit"
500 internal server errorb - "an unexpected error occured on our servers"
What are the limitations placed on the number of requests that can be made?
200 requests/hour
List the errors that you can expect when making calls to this API.
-400 Bad Request
-401 Unauthorized
-429 Too Many Requests
-500 Internal Server Error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment