Hello,
I have an app that is outside of the monday.com environment (not a dashboard/app view)
I am trying to use the “monday.get” sdk to get the session token or the context, but for some reason, the data is not showing up:
const sessionToken = await monday.get("sessionToken");
const context = await monday.get('context')
The results are:
{
"method": "get",
"args": {
"type": "sessionToken"
},
"requestId": "u8dznyh",
"version": "0.4.1"
}
{
"method": "get",
"args": {
"type": "context"
},
"requestId": "fx9mzqd",
"version": "0.4.1"
}
As you can see, I am not receiving the actual data back.
What can be the reason for it?
Thank you