Skip to content

Instantly share code, notes, and snippets.

@HyunwooMoon-developer
Created November 27, 2020 03:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HyunwooMoon-developer/e20cce803ef46644d671d31ad66e6460 to your computer and use it in GitHub Desktop.
Save HyunwooMoon-developer/e20cce803ef46644d671d31ad66e6460 to your computer and use it in GitHub Desktop.
Visit the YouTube API documentation discussed above and find the subscription list endpoint documentation.
List 1 required parameter and 2 optional parameters for this endpoint.
For each parameter listed, state the data type and give an example of the allowed values.
required parameter : part(String){contentDetails, id, snippet, subscriberSnippet}
optional parameter: forChannelId(String), maxResult(0-50, default: 5)
Visit the Google Maps Geocoding API documentation found here: https://developers.google.com/maps/documentation/geocoding/intro.
Construct the full URL for requesting the geographic coordinates of The Statue of Liberty in JSON format.
Do the same for your own address.
https://maps.googleapis.com/maps/api/geocode/json?address=statue+of+liberty&key=AIzaSyCXvNSynLZCbhhmFAZ_hy-uJjLdwBuhUh4
Visit the meetup.com API docs found here: https://www.meetup.com/meetup_api/. Answer the following questions:
Does this API require authentication?
Yes, we need authentication
Does this API support CORS?
The meetup API supports the CORS specification which allows browser clients hosted on a domain other than api.meetup.com to communicate directly with API.
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//:urlname/events
What are the limitations placed on the number of requests that can be made?
Limits and Throttling
The Meetup API aims to provide consistent responsiveness and equal quality of service for all its consumers.
In order to do so, we limit the frequency at which the API will produce successful responses to a single client.
You can know your current rate limit status by reading X-RateLimit HTTP headers included in responses.
The following table indicates their name and meaning.
X-RateLimit-Limit The maximum number of requests that can be made in a window of time
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