When a button click triggers createPlaylist() the function fails to execute asd(). I tried doing it all on the same function but I get the same. console.log(resp) never logs. Why is that?
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);
});
}