Youtube video description
From UBot Studio
$youtube video description is a function that retrieves the description of a YouTube video using its video ID.
Parameters
Video Id: This is the unique identifier for the YouTube video from which the description will be retrieved. The video ID is typically found in the video's URL.
Return Value
This function returns the description of the video as found on its YouTube page.
Example
ui console view connect to youtube("path/to/your/client secret.json") log($youtube video description("dQw4w9WgXcQ"))
This script starts by establishing a connection to YouTube using the client secret file located at "path/to/your/client secret.json". Do replace "path/to/your/" with the actual path to your client secret file.
Then, it uses the "$youtube video description" function to fetch the description of the YouTube video with the ID "dQw4w9WgXcQ", and logs it to the console.