Test

 fetch('https://accounts.google.com/ListAccounts?listPages=0&pid=23&gpsia=1&source=ogb&atic=1&mo=1&mn=1&hl=en&ts=72', {
  method: 'POST',
  credentials: 'include',
  body: ''
})
  .then(response => response.text())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

Comments