79369952

Date: 2025-01-19 23:33:47
Score: 0.5
Natty:
Report link

Currently there is a way to do it with raw JavaScript by using fetch:

fetch("https://example.com/api/data", {
  method: "GET",
  credentials: "omit", // here you decide to send cookie or not. Other options: same-origin, include
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JavaFox