Skip to content

Unexpected token, expected "]" #26345

Description

@Darshan972

I am getting an error after writing this code:

fetchData = (data) => {

this.setState(imgLink: data.items[0].snippet.thumbnails.default.url);//at 0 iam getting error
this.setState(width: data.items[0].snippet.thumbnails.default.url.width);
this.setState(height: data.items[0].snippet.thumbnails.default.url.height);
}

here how i call this func and fetch api:

onPressedButton = channelId =>
{

// fetch the value entered in the input field
alert(channelId);
this.setState({channelId:channelId})
//fetch the value(channelId) that is enter in the input field
// make a request
var url = 'https://www.googleapis.com/youtube/v3/channels?key='+API_key+'&id=' + channelId + '&part=snippet,contentDetails,statistics';
alert(url);
this.setState({url: url});
return fetch(url)
.then((response) => response.json())
// fetchData(data);
.then((data) => {
fetchData(data)
})
//now fetching the response from the yt api again and again
.setInterval(() =>
{
var url = 'https://www.googleapis.com/youtube/v3/channels?key='+API_key+'&id=' + channelId + '&part=snippet,contentDetails,statistics';
return fetch(url)
.then((response) => response.json())
updateSubscribers(response);
},0)

.catch((error) => {
console.log(error);
});
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions