Cookie in Mobile Shopify Embedded App

I have an embedded app, and I use http only cookie to authenticate the user login information. The server response has a cookie set in res.cookie(‘userID’, ‘123’, { path: ‘/’, sameSite: ‘None’, maxAge: 31536000000, httpOnly: true, secure: true }); This works well in web app, but in Shopify mobile app, it doesn’t work as expected. I think shopify is using mobile in-app browser. What is a proper to set the cookie from backend to mobile app browser to enable my embedded app in mobile shopify app. Thanks