Is it possible to call a cloud function that returns objects without having a current user? The iOS and Android SDKs support anonymous users but I'm asking specifically for JavaScript.
I'd like to allow it so that anyone who visits my web app can read objects without having to sign in. I'm using Back4App.
Yes. You can call a cloud code function no matter the user is logged in or not. Inside the cloud function you can check the
user
property of therequest
object to check if the user is either logged in or not. In the case that your user is not logged in and you want to query a class which requires user permission, you can use theuseMasterKey
option.