After clicking a button to trigger createPlaylist(), the function fails to execute asd(). I attempted combining everything into one function, but still encountered the same issue. The console.log(resp) statement never logs anything. What could be causing this problem?
createPlaylist(token:string = localStorage.getItem('myToken')) {
const url = `https://api.spotify.com/v1/users/${this.currentUser}/playlists`;
const headers = new Headers();
headers.append('Authorization', 'Bearer ' + token);
headers.append('Content-Type', 'application/json');
const body = {
'name': 'searchDDD playlist'
};
this.http.post(url, body, { headers } )
.subscribe(res => {
console.log(res.json().name);
console.log(res.status);
this.playlistID = res.json().id;
this.asd();
});
}
asd(token:string = localStorage.getItem('myToken')){
const url = `https://api.spotify.com/ v1/users/${this.currentUser}/playlists/${this.playlistID}/tracks?`;
const body = {'uris': ['spotify:track:4iV5W9uYEdYUVa79Axb7Rh',
'spotify:track:1301WleyT98MSxVHPZCA6M']};
const headers = new Headers();
headers.append('Authorization', 'Bearer ' + token);
headers.append('Content-type', 'application/json');
this.http.post(url, body, { headers } ).map(resp => {
console.log(resp);
});
}