I am looking for a way to fill out a field in geoform based on who has logged in.
Basically:
I am using this example:
I do have this downloaded and deployed on my server.
Is this possible?
Rickey,
Look into the IdentityManager singleton:
define([
'esri/IdentityManager',
],
function(
IdentityManager){
...
console.log(IdentityManager.credentials[0].userId)
Robert,
I will look into it, thank you!