This is my api call to create video
$http({
method:'POST',
url:"https://api.twitch.tv/kraken/videos?channel_id="+response.data._id+"&title=sample test",
headers:{
"Accept": "application/vnd.twitchtv.v5+json",
"Client-ID":clientId,
"Authorization": "OAuth "+token
}
}).then(function(response){
console.log(response);
})
Getting response like this
{"error":"Bad Request","status":400,"message":"Your email must be verified, and you must be a partner, affiliate, or developer to upload videos"}