19 – 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 Article23 – YouTube Data API – Comment Threads- insert function
This is article 23 of the YouTube API With PHP series. The insert function creates a new top-level comment. To add a reply to an [...]
View Article24 – YouTube Data API – Comment Threads- update function
This is article 24 of the YouTube API With PHP series. The update function modifies the top-level comment in a comment thread. This call requires [...]
View Article25 – YouTube Data API – Comments – insert function
This is article 25 of the YouTube API With PHP series. A comment resource contains information about a single YouTube comment. A comment resource can [...]
View Article26 – YouTube Data API – Comments – insert function
This is article 26 of the YouTube API With PHP series. The insert function creates a reply to an existing comment. To create a top-level [...]
View Article27 – YouTube Data API – Comments – update function
This is article 27 of the YouTube API With PHP series. The update function modifies a Comment. This requires user authentication as you can only [...]
View Article28 – YouTube Data API – Comments – markAsSpam function
This is article 28 of the YouTube API With PHP series. markAsSpam function expresses the current user’s opinion that one or more comments should be [...]
View Article29 – YouTube Data API – Comments – setModerationStatus function
This is article 29 of the YouTube API With PHP series. This function sets the moderation status of one or more comments. The API request [...]
View Article30 – YouTube Data API – Comments – delete function
This is article 30 of the YouTube API With PHP series. The delete function deletes a comment either posted by the current user, or posted [...]
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 Article23 – YouTube Data API – Comment Threads- insert function
This is article 23 of the YouTube API With PHP series. The insert function creates a new top-level comment. To add a reply to an [...]
View Article31 – YouTube Data API – Guide Categories – list function
This is article 31 of the YouTube API With PHP series. A GuideCategory resource identifies a category that YouTube algorithmically assigns based on a channel’s [...]
View ArticlePython 2.7 – Fundamentals – Collections – Lists
In the previous post, we dealt with strings. A string is a collection of characters and lists are ordered collections of any kind of data [...]
View ArticlePython 2.7 – Fundamentals – Collections – Tuples
Tuples are very similar to lists, except that they are immutable. In other words, once a tuple is created you cannot modify it in any [...]
View ArticlePython 2.7 – Fundamentals – Collections – Sets
A set is an unordered collection of mixed data types. No duplicates can be there in a set. Sets are declared by enclosing the items [...]
View ArticlePython 2.7 – Fundamentals – Collections – Dictionaries
Just like a set, a dictionary is an unordered collection. A dictionary represents a collection of key:value pairs. In other words, we can use a [...]
View ArticlePython 2.7 – Fundamentals – Basic Input & Output
The input() function Python has numerous GUI libraries which can create complex user interfaces, but within the core language it has a single input() function [...]
View Article