Ich versuche, Web-Client zu machen, wo Sie Videos zur Wiedergabeliste hinzufügen können. Derzeit habe ich keine Ahnung, was falsch ist, also ist Hilfe mehr als willkommen.Youtube Playlist einfügen API Javascript
Ich bekomme Fehlercode 400() und überprüfte Fehlercodes, aber eine Sache ist sicher, dass das Video nicht auf Wiedergabeliste ist. Und genau das gleiche funktioniert in ihrem "Probieren!" Sektion. Also denke ich, dass meine Konfigurationsvariable nicht korrekt ist oder falsch gesendet wird.
function addSongYTPlaylist(){
var xmlhttp = new XMLHttpRequest();
var url = "https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&part=snippet&key=AIzaSyA17v8PuNBsIwgbxg6D78iHV-w7_dYyXPw";
var config = {
"snippet": {
"playlistId": {PLAYLIST_ID},
"resourceId": {
"videoId": {VIDEO_ID},
"kind": "youtube#video"
}
}
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
var response = JSON.parse(xmlhttp.responseText);
console.log(response);
}
};
console.log(url);
xmlhttp.open("POST", url, true);
xmlhttp.setRequestHeader("Authorization", "Bearer {ACCESS_TOKEN});
xmlhttp.send(config);
}