Skip to content

Instantly share code, notes, and snippets.

@rbannal86
Created September 26, 2019 21:14
Show Gist options
  • Save rbannal86/4d79c2cc496101b2cce955feaccfd764 to your computer and use it in GitHub Desktop.
Save rbannal86/4d79c2cc496101b2cce955feaccfd764 to your computer and use it in GitHub Desktop.
Reading API Documentation
1. endpoint: https://www.googleapis.com/youtube/v3/subscriptions
filters is required: can accept a string that returns a channel id (channelId)
maxResults is optional: can accept an unsigned integer from 0 to 50, with a default of 5
order is optional: cann accept a string (alphabetical, relevance, unread)
2. Statue of Liberty: https://maps.googleapis.com/maps/api/geocode/json?address=Statue+of+Liberty=YOUR_API_KEY
My Address: //maps.googleapis.com/maps/api/geocode/json?address=2311+Buckingham+Road,+Ann+Arbor,+MI&key=YOUR_API_KEY
Requires paid subscription, added "=YOUR_API_KEY" to each URL.
3. Meetup API
a. This API, under most circumstances, requires authentication
b. This API supports CORS
c. api.meetup.com/find/upcoming_events
d. The limit to requests seems to be based on frequency instead of total amount
e. Errors:
*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