YouTube: Upload Video
Upload video to YouTube channel
The module requires Google OAuth 2.0 connection to get access token and pass it with other parameters to upload a video using YouTube Data V3 API.
Once uploading started, unique temporary video uploading ID is created, which is sent in response with status field (generally equals "in process").
You can check video uploading status using the YouTube: Get Video status module.
Important note: The uploading status, whish is accessible by the YouTube: Get Video status module, does not actually correspond to the YouTube video status, it only determines is the module processed a video thus transferred it correctly to YouTube or not.
If webhook URL is provided, server sends GET request (in 5 seconds delay from initial request started processing) to webhook URL with youtubeLink attached to the params of the URL once video processing finished.
Parameters
Video file URL
Is a URL of video file, which will be uploaded to YouTube. Pay attention URL must lead to the file itself, not an html page, which contains the video.
Webhook URL
Used as a callback URL. Server will send GET request to that URL after video processing finished.
Title
Video title
Description
Vide description
Tags
Tags must be a string containing tags separated with comma. Example: "tag1,tag2,tag3"
Playlist ID
To get playlist ID go to YouTube Studio and take the ID from URL: https://studio.youtube.com/playlist/<PLAYLIST_ID>/videos
Interface / Response body
Video uploading ID
Unique temporary ID, which you can use to get uploading video status using YouTube: Get Video status module.
Status
Video uploading status. Could contain one of these values: "in process" / "error" / "processed".
Important note: The uploading status, whish is accessible by the YouTube: Get Video status module, does not actually correspond to the YouTube video status, it only determines is the module processed a video thus transferred it correctly to YouTube or not.
Errors
400
Validation error (title).
User exceeded max videos per day.
403
Google OAuth 2.0 client exceeded daily quota limit for uploading videos.
500
Internal Server error.
Last updated