Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- new Array(100).fill(false).forEach(() => {
- var myHeaders = new Headers();
- myHeaders.append("authorization", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOjcwLCJpYXQiOjE3MDA0NjU3NTcsImV4cCI6MTcwMzA1Nzc1N30.qtGS0OV6Eyf7tDv-pSP0EiK7IJqG9cdF9PP5MHBlm-k");
- var requestOptions = {
- method: 'GET',
- headers: myHeaders,
- redirect: 'follow'
- };
- fetch("https://aikit.webstaginghub.com/api/new-words?my_words=true&page=1&sortBy=name&sort=asc&isSimilar=true", requestOptions)
- .then(response => response.text())
- .then(result => console.log(result))
- .catch(error => console.log('error', error));
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement