Xbasic
firestore_getUsers Function
Syntax
p firestore_getUsers(c serviceAccountConnectionString)
Arguments
- serviceAccountConnectionString
Named Firestore service account connection string.
Returns
- resultPointer
error, errorText, and result (JSON array of users).
Description
Return a JSON array of users (email and uid).
Example
dim r as p
r = firestore_getUsers("::name::my_fs_connString")
if r.error then
? r.errorText
else
? json_reformat(r.result)
end if