android - how to recive url after upload to youtube and how to search by developer tag (version v3) -


my app upload video youtube, need after upload recive url , search developer tag.

i'm use way https://developers.google.com/youtube/v3/docs/videos/insert upload videos.

i saw link show how in version 2.0, i'm use v3

https://developers.google.com/youtube/2.0/developers_guide_protocol_uploading_videos#assigning_developer_tags

<media:category   scheme="http://gdata.youtube.com/schemas/2007/developertags.cat">tagname </media:category> 

in documentation of v3 not find "developer tag" https://developers.google.com/youtube/v3/getting-started

i need simple explanation how attach developer tag upload , how receive url after upload

thanks ahead

in url added https://developers.google.com/youtube/v3/docs/videos/insert there section called "response". in there can read after insert videoresource:

        {       "id": string,       "kind": "youtube#video",       "etag": etag,       "snippet": {        ... ( , more... ) 

key "id" contains id video. video can found here http://www.youtube.com/watch?v={video_id}


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -