java/README.md
Prerequisites for this code sample:
Before running the sample, client_secrets.json must be populated with a client ID and client secret. You can create an ID/secret pair at:
https://code.google.com/apis/console
To build this code sample from the command line, type:
<code>mvn compile</code>
To run a code sample from the command line, enter the following:
<code>mvn exec:java -Dexec.mainClass="FULL_CLASS_NAME"</code>
For samples that require arguments, also specify -Dexec.args, e.g.:
<code>mvn exec:java -Dexec.mainClass="FULL_CLASS_NAME" -Dexec.args="arg1 arg2"</code>
For more instructions about how to set up Maven and/or your IDE to run YouTube API samples, see this video:
Description: This sample demonstrates how to use OAuth 2.0 to authorize an application to access resources on a user's behalf.
Method: youtube.subscriptions.insert
Description: This sample calls the API's <code>subscriptions.insert</code> method to add a subscription to a specified channel.
Method: youtube.channels.update
Description: This sample calls the API's <code>channels.update</code> method to set <code>invideoPromotion</code> properties for the channel.
Method: youtube.playlists.insert
Description: This sample calls the API's <code>playlists.insert</code> method to create a private playlist owned by the channel authorizing the request.
Method: youtube.commentThreads.list, youtube.comments.insert, youtube.comments.list, youtube.comments.update, youtube.comments.setModerationStatus, youtube.comments.markAsSpam, youtube.comments.delete
Description: This sample demonstrates how to use the following API methods to create and manage comments:
<ul> <li>It calls the <code>commentThreads.list</code> method with the <code>videoId</code> parameter set to retrieve comments for a video.</li> <li>It calls the <code>comments.insert</code> method with the <code>parentId</code> parameter set to reply to an existing comment.</li> <li>It calls the <code>comments.list</code> method with the <code>parentId</code> parameter to retrieve the comments in the thread.</li> <li>It calls the <code>comments.update</code> method with comment in the request body to update a comment.</li> <li>It calls the <code>comments.setModerationStatus</code> method to set the moderation status of the comment, the <code>comments.markAsSpam</code> method to mark the comment as spam, and the <code>comments.delete</code> method to delete the comment, using the <code>id</code> parameter to identify the comment.</li></ul>Method: youtube.commentThreads.insert, youtube.commentThreads.list, youtube.commentThreads.update
Description: This sample demonstrates how to use the following API methods to create and manage top-level comments:
<ul> <li>It calls the <code>commentThreads.insert</code> method once with the <code>channelId</code> parameter to create a channel comment and once with the <code>videoId</code> parameter to create a video comment.</li> <li>It calls the <code>commentThreads.list</code> method once with the <code>channelId</code> parameter to retrieve channel comments and once with the <code>videoId</code> parameter to retrieve video comments.</li> <li>It calls the <code>commentThreads.update</code> method once to update a video comment and then again to update a channel comment. In each case, the request body contains the <code>comment</code> resource being updated.</li> </ul>Method: youtube.captions.insert, youtube.captions.list, youtube.captions.update, youtube.captions.download, youtube.captions.delete
Description: This sample demonstrates how to use the following API methods to create and manage YouTube video caption tracks:
<ul> <li>It calls the <code>captions.insert</code> method with the <code>isDraft</code> parameter set to <code>true</code> to upload a caption track in draft status.</li> <li>It calls the <code>captions.list</code> method with the <code>videoId</code> parameter to retrieve video caption tracks.</li> <li>It calls the <code>captions.update</code> method with the caption in the request body to update a caption track.</li> <li>It calls the <code>captions.download</code> method to download the caption track.</li> <li>It calls the <code>captions.delete</code> method to delete the caption track, using the <code>id</code> parameter to identify the caption track.</li> </ul>Method: youtube.activities.insert
Description: This sample calls the API's <code>activities.insert</code> method to post a bulletin to the channel associated with the request.
Method: youtube.playlistItems.list
Description: This sample calls the API's <code>playlistItems.list</code> method to retrieve a list of videos uploaded to the channel associated with the request. The code also calls the <code>channels.list</code> method with the <code>mine</code> parameter set to <code>true</code> to retrieve the playlist ID that identifies the channel's uploaded videos.
Method: youtube.search.list
Description: This sample calls the API's <code>search.list</code> method to retrieve search results associated with a particular keyword.
Method: youtube.search.list, youtube.videos.list
Description: This sample calls the API's <code>search.list</code> method with the <code>type</code>, <code>q</code>, <code>location</code>, and <code>locationRadius</code> parameters to retrieve search results matching the provided keyword within the radius centered at a particular location. Using the video IDs from the search result, the sample calls the API's <code>videos.list</code> method to retrieve location details of each video.
Method: youtube.channels.update, youtube.channels.list
Description: This sample demonstrates how to use the following API methods to set and retrieve localized metadata for a channel:
<ul> <li>It calls the <code>channels.update</code> method to update the default language of a channel's metadata and to add a localized version of this metadata in a selected language. Note that to set the default language for a channel resource, you actually need to update the <code>brandingSettings.channel.defaultLanguage</code> property.</li> <li>It calls the <code>channels.list</code> method with the <code>hl</code> parameter set to a specific language to retrieve localized metadata in that language.</li> <li>It calls the <code>channels.list</code> method and includes <code>localizations</code> in the <code>part</code> parameter value to retrieve all of the localized metadata for that channel.</li> </ul>Method: youtube.channelSections.update, youtube.channelSections.list
Description: This sample demonstrates how to use the following API methods to set and retrieve localized metadata for a channel section:
<ul> <li>It calls the <code>channelSections.update</code> method to update the default language of a channel section's metadata and to add a localized version of this metadata in a selected language.</li> <li>It calls the <code>channelSections.list</code> method with the <code>hl</code> parameter set to a specific language to retrieve localized metadata in that language.</li> <li>It calls the <code>channelSections.list</code> method and includes <code>localizations</code> in the <code>part</code> parameter value to retrieve all of the localized metadata for that channel section.</li> </ul>Method: youtube.playlists.update, youtube.playlists.list
Description: This sample demonstrates how to use the following API methods to set and retrieve localized metadata for a playlist:
<ul> <li>It calls the <code>playlists.update</code> method to update the default language of a playlist's metadata and to add a localized version of this metadata in a selected language.</li> <li>It calls the <code>playlists.list</code> method with the <code>hl</code> parameter set to a specific language to retrieve localized metadata in that language.</li> <li>It calls the <code>playlists.list</code> method and includes <code>localizations</code> in the <code>part</code> parameter value to retrieve all of the localized metadata for that playlist.</li> </ul>Method: youtube.videos.update, youtube.videos.list
Description: This sample demonstrates how to use the following API methods to set and retrieve localized metadata for a video:
<ul> <li>It calls the <code>videos.update</code> method to update the default language of a video's metadata and to add a localized version of this metadata in a selected language.</li> <li>It calls the <code>videos.list</code> method with the <code>hl</code> parameter set to a specific language to retrieve localized metadata in that language.</li> <li>It calls the <code>videos.list</code> method and includes <code>localizations</code> in the <code>part</code> parameter value to retrieve all of the localized metadata for that video.</li> </ul>Method: youtube.videos.update
Description: This sample calls the API's <code>videos.update</code> method to update a video owned by the channel authorizing the request.
Method: youtube.thumbnails.set
Description: This sample calls the API's <code>thumbnails.set</code> method to upload an image and set it as the thumbnail image for a video. The request must be authorized by the channel that owns the video.
Method: youtube.videos.insert
Description: This sample calls the API's <code>videos.insert</code> method to upload a video to the channel associated with the request.
Method: youtubeAnalytics.reports.query
Description: This sample calls the API's <code>reports.query</code> method to retrieve YouTube Analytics data. By default, the report retrieves the top 10 videos based on viewcounts, and it returns several metrics for those videos, sorting the results in reverse order by viewcount. By setting command line parameters, you can use the same code to retrieve other reports as well.
Method: youtubeReporting.reportTypes.list, youtubeReporting.jobs.create
Description: This sample demonstrates how to create a reporting job. It calls the <code>reportTypes.list</code> method to retrieve a list of available report types. It then calls the <code>jobs.create</code> method to create a new reporting job.
Method: youtubeReporting.jobs.list, youtubeReporting.reports.list
Description: This sample demonstrates how to retrieve reports created by a specific job. It calls the <code>jobs.list</code> method to retrieve reporting jobs. It then calls the <code>reports.list</code> method with the <code>jobId</code> parameter set to a specific job ID to retrieve reports created by that job. Finally, the sample prints out the download URL for each report.
Method: youtube.liveBroadcasts.bind,youtube.liveBroadcasts.insert,youtube.liveStreams.insert
Description: This sample calls the API's <code>liveBroadcasts.insert</code> and <code>liveStreams.insert</code> methods to create a broadcast and a stream. Then, it calls the <code>liveBroadcasts.bind</code> method to bind the stream to the broadcast.
Method: youtube.liveBroadcasts.list
Description: This sample calls the API's <code>liveBroadcasts.list</code> method to retrieve a list of broadcasts for the channel associated with the request. By default, the request retrieves all broadcasts for the channel, but you can also specify a value for the <code>--broadcast-status</code> option to only retrieve broadcasts with a particular status.
Method: youtube.liveStreams.list
Description: This sample calls the API's <code>liveStreams.list</code> method to retrieve a list of video stream settings that a channel can use to broadcast live events on YouTube.
Methods: youtube.videos.list, youtube.liveBroadcasts.list
Description: This sample retrieves the live chat ID from either a <code>videoId</code> parameter or the live broadcast for the authorized user's channel. The <code>liveChatId</code> is required for other samples that interact with live chat.
Method: youtube.liveChatMessages.insert
Description: This sample inserts a live chat message into the the specified video or the live broadcast for the authorized user's channel.
Method: youtube.liveChatMessages.delete
Description: This sample deletes the specified live chat message.
Method: youtube.liveChatMessages.list
Description: This sample lists live chat messages from the specified video or from the live broadcast for the authorized user's channel.