我正在尝试将视频上传到Dailymotion时添加标签。
参考Dailymotion's guide,我编写了如下代码。
d = dailymotion.Dailymotion()
d.set_grant_type('password', api_key=API_KEY, api_secret=API_SECRET,
scope=['manage_videos'], info={'username': USERNAME, 'password': PASSWORD})
url = d.upload('./video.mp4')
d.post('/me/videos',
{'url': url, 'title': 'MyTitle', 'published': 'true', 'channel': 'news', 'description':'MyDescription', 'tags': 'I,want,to,add,some,tags'})
我成功上传了视频,标题,频道和说明,但标签为空。 有人知道如何添加标签吗?
答案 0 :(得分:0)
我已经测试了您的代码,它似乎运行良好。视频创建完毕,标签被填充。
您能提供视频ID来解决此问题吗?