videovideo-streamingdailymotion-api

Dailymotion API : Add Video Category


I'm able to uploading the video to dailymotion via their data API but the video doesn't get published. I figured out that the category of the video has to be set for the video to be published. I checked the video upload api but there is no option for Category.

Due to this my service is not able to publish the video on dailymotion.

Need help. Thanks


Solution

  • You can set the channel field

    curl -d 'title=<TITLE>&channel=<CHANNEL>&tags=<TAGS>' https://api.dailymotion.com/video/<VIDEO_ID>
    curl -d 'published=true' https://api.dailymotion.com/video/<VIDEO_ID>
    

    The list of channels : https://api.dailymotion.com/channels

    Channel in dailymotion is a category not a user.

    Thanks,