Hello,
I am trying to authenticate my unity client from cloud, but I am getting error message
Response {ācodeā:141,āerrorā:āMoralis.authenticate is not a functionā}
My cloud function is below
Moralis.Cloud.define(āLoginUserā, async(request)=>{
Moralis.authenticate().then(function (user) {
return (user.get(āethAddressā))
})
})