Hi guys,
I’ve recently noticed that I am getting a API error when calling the private members collection in the editor. However the same code in Production works just fine. This started to occur a few days ago. I don’t believe it’s related to anything that I’m doing as I didn’t change any thing and it works fine in Production.
This is just a Editor issue… anyone else experiencing this?
export function checkGuestEmail(event) {
console.info(event.target.value) //value is a email address
if (event.target.value.length > 0) {
wixData.query("Members/PrivateMembersData")
.eq("loginEmail", event.target.value)
.find()
.then( (results) => {
console.info(results)
});
}
}
Results with the following error:
"missing_context, details: {"fields":"MSID / (appDefId, instanceId)","apps":"null","entities":"{\"context\":{\"appDefId\":\"eb377299-86b4-4a86-a1b5-774a2d1d374b\"},\"identities\":[{\"service\":{\"appDefId\":\"eb377299-86b4-4a86-a1b5-774a2d1d374b\"}}]}"}"message:
details:
{…}
"{"context":{"appDefId":"eb377299-86b4-4a86-a1b5-774a2d1d374b"},"identities":[{"service":{"appDefId":"eb377299-86b4-4a86-a1b5-774a2d1d374b"}}]}"entities:
"missing_context"error:
"MSID / (appDefId, instanceId)"fields:
"api_error"category:
nullapps:
Thank you,
David