3 – The YouTube API Overview
This is article 3 of the YouTube API With PHP series. The YouTube API consists of 6 modules: The Player APi The Data API The [...]
View Article4 – YOUTUBE PLAYER API
This is article 4 of the YouTube API With PHP series. 1.Using IFrame The simplest way of putting a YouTube video in a web page [...]
View Article5 – YouTube Data API Overview
This is article 5 of the YouTube API With PHP series. We now start with the core YouTube API which is the Data API. It [...]
View Article6 – YouTube Data API – Starting To Code
This is article 6 of the YouTube API With PHP series. CODING PATTERN There are two kinds of coding patterns when working with the YouTube [...]
View Article7 – YouTube Data API – Paging & MaxResults
This is article 7 of the YouTube API With PHP series. THE PROBLEM WITH MAXRESULTS Everyone who starts to work with the YouTube Data API [...]
View Article8 – YouTube Data API – Activities – list function
This is article 8 of the YouTube API With PHP series. We will see how to work with YouTube Activities. An Activity is any task [...]
View Article9 – YouTube Data API – Activities – insert function
This is article 9 of the YouTube API With PHP series. We now see how to add Activities by using the API. This feature has [...]
View Article10 – YouTube Data API – Captions – list function
This is article 10 of the YouTube API With PHP series. CAPTIONS A Caption track is a text based track attached to a video, which [...]
View Article11 – YouTube Data API – Captions – insert function
This is article 11 of the YouTube API With PHP series. The insert API call is used to upload a Caption track. A maximum filesize [...]
View Article12 – YouTube Data API – Captions – update function
This is article 12 of the YouTube API With PHP series. The update API call is used to update an existing Caption Track. The same [...]
View Article13 – YouTube Data API – Captions – download function
This is article 13 of the YouTube API With PHP series. Download a caption track of a Video. The caption track is returned in its [...]
View Article14 – YouTube Data API – Captions – delete function
This is article 14 of the YouTube API With PHP series. The delete call deletes a specified Caption track. The Request URL is DELETE https://www.googleapis.com/youtube/v3/captions/ [...]
View Article15 – YouTube Data API – Channel Banners
This is article 15 of the YouTube API With PHP series. A Channel Banner is the image which shows up the Channel homepage in the [...]
View Article16 – YouTube Data API – Channels – list function
This is article 16 of the YouTube API With PHP series. Channels are where videos are posted. Every YouTube user gets a default channel. A [...]
View Article17 – YouTube Data API – Channels – update function
This is article 17 of the YouTube API With PHP series. The update function allows you to make changes in the Channel resource data. Since [...]
View Article18 – YouTube Data API – Channel Sections – list function
This is article 18 of the YouTube API With PHP series. A ChannelSection resource contains information about a set of videos that a channel has [...]
View Article19 – YouTube Data API – Channel Sections – insert function
This is article 19 of the YouTube API With PHP series. The insert function adds a channel section to the authenticated user’s channel. A channel [...]
View Article20 – YouTube Data API – Channel Sections – update function
This is article 20 of the YouTube API With PHP series. The update function updates an existing ChannelSection. This call requires user-authentication so only ChannelSections [...]
View Article21 – YouTube Data API – Channel Sections – delete function
This is article 21 of the YouTube API With PHP series. The delete function deletes an existing ChannelSection. This call requires user-authentication so only ChannelSections [...]
View Article22 – YouTube Data API – Comment Threads- list function
This is article 22 of the YouTube API With PHP series. It is easy to confuse Comments with Comment Threads. To put it simply, every [...]
View Article