const url = `https://api.twitch.tv/helix/streams`;
let authorizationObject = await getTwitchAuthorization();
let { access_token, expires_in, token_type } = authorizationObject;
token_type =
token_type.substring(0, 1).toUpperCase() +
token_type.substring(1, token_type.length);
let authorization = `${token_type} ${access_token}`;
let headers = {
authorization,
"Client-Id": clientId,
};
const requestStreams = await fetch(url, {headers,})
How can I get to the next page?