Search code examples
androidandroid-youtube-api

How to make all uploaded YouTube videos as private


In my application I have upload the videos in YouTube using android mobile application,But I want to make all uploaded videos as private if there is any possible.


Solution

  • Set privacy status of your video to private while uploading the video using Youtube Data Api v3. Code will be like this -

    VideoStatus status = new VideoStatus();
    status.setPrivacyStatus("private");
    

    For more information visit

    Youtube Data Api V3