Hello,
I’m building an app extension, and when I receive a request to my site I get the params:
hmac = '3a.....'
shop = '{shop}.myshopify.com'
session = '885.......'
et.
I can authenticate using hmac, however, I’m curious if there is any information I can get from the session parameter. The session is passed as a string so I can’t decode it like a JWT session token Shopify uses for embedded apps. Is there a way to decode/make an API call with this string to get user data?
Thanks!