Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save psychicbologna/0082916042c2c1ae343c2edb9f422e55 to your computer and use it in GitHub Desktop.
Save psychicbologna/0082916042c2c1ae343c2edb9f422e55 to your computer and use it in GitHub Desktop.
#Youtube and Google Maps Geocoding API Exercise
##Alexander Fukui, solo
### 1-Q
*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.*
### 1-A.
- Endpoint: https://www.googleapis.com/youtube/v3/subscriptions
- Required Param: part
- Optional Params: channelId, order
### 2-Q
*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.*
### 2-A
- https://maps.googleapis.com/maps/api/geocode/json?address=Statue+of+Liberty&key=AIzaSyANkUix5dsCDG-R8nPTN25l1MNrMqmAKbw
- https://maps.googleapis.com/maps/api/geocode/json?address=7101+5th+Ave+S,+Minneapolis,+MN&key=AIzaSyANkUix5dsCDG-R8nPTN25l1MNrMqmAKbw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment