Skip to content

Instantly share code, notes, and snippets.

@Lucho2027
Created September 1, 2019 18:16
Show Gist options
  • Save Lucho2027/9ba016309508a6a8440c45caaccb192a to your computer and use it in GitHub Desktop.
Save Lucho2027/9ba016309508a6a8440c45caaccb192a 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 - data type is a string - "snippet, contentDetails" is an allowed value
Optional parameters: forchannelID - data type is a string - "Name of cahnnel I am subscribed" - when filter "mine" is sest to true it will look through my channels to tell me that i am subscribed to the channel which name I have entered in "forchannelID".
maxResults - data type is an integer - it limits the number of results that it outputs to the integer selected.
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.
Statue of Liberty : https://maps.googleapis.com/maps/api/geocode/json?address=Statue+of+Liberty+New+York&Key=YOURKEYHERE
Own Address: https://maps.googleapis.com/maps/api/geocode/json?address=3114+Rudder+Lane,+Bloomington,+Illinoisk&Key=YOURKEYHERE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment