I am currently working with the customSessionStorage within a nodeJs CLI app.
I have got the session stored successfully with the following shape
“id”: “SECRET”,
“shop”: “shop.myshopify.com”,
“state”: “089043150160056”,
“isOnline”: true,
“__v”: 0,
“accessToken”: “secret”,
“expires”: null,
“inOnline”: false,
“onlineAccessInfo”: “”,
“scope”: “write_products,write_customers,write_draft_orders,write_orders,read_themes”
and as can be seen above, the onlineAccessInfo is never seen anywhere within the callbacks and so is never stored or retrieved.
Can anyone suggest why this might be the case and what I might be missing?
Thanks