Created
November 4, 2019 23:57
-
-
Save jgrizzled/d94337a8710f523d94acae1464dcf215 to your computer and use it in GitHub Desktop.
Thinkful M10 CP4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Youtube API | |
1 required parameter: | |
part | |
data type: string | |
example: "id,contentDetails" | |
2 optional parameters: | |
maxResults | |
data type: unsigned integer | |
example: 5 | |
order | |
data type: string | |
example: "alphabetical" | |
Google Maps API | |
Statue of Liberty URL: | |
https://maps.googleapis.com/maps/api/geocode/json?address=statue+of+liberty&key=API_KEY | |
My house: | |
https://maps.googleapis.com/maps/api/geocode/json?address=4043+e+cholla+st+phoenix+az&key=API_KEY | |
Meetup.com API | |
Does this API require authentication? | |
Yes most methods require it. | |
Does this API support CORS? | |
yes | |
Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint. | |
The reponse is a JSON string of a target city object and event obects. | |
https://www.meetup.com/meetup_api/docs/find/upcoming_events/ | |
What are the limitations placed on the number of requests that can be made? | |
Each app is rate-limited, with info about that limit in HTTP headers | |
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 Error an unexpected error occured on our servers | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment