Issue with User Rest API

function userLogin(username, password) {
let url = https://app-19007.on-aptible/parse/login?username=user1&password=1
let opt = {
method: “GET”,
headers: {
“X-Parse-Application-Id”: API_ID,
“X-Parse-Client-Key”: CLIENT_KEY,
“X-Parse-Revocable-Session”: “1”,
},
}
fetch(url, opt)
.then((response) => {
console.log(response);
})
.catch((err) => {
console.log(err);
})
}

error: Failed, reason: getaddrinfo ENOTFOUND app-19007.on-aptible

Not sure what is wrong with this get request.

The request looks right, but the address https://app-19007.on-aptible looks wrong. Maybe https://app-19007.on-aptible.com ?

Yeah, that solved my issue