Paulo Margarido
                                            Paulo Margarido
                                        
                                    Hey @akhilmhdh, we haven't gotten around to this one yet, so it's up for grabs. If you're able to do this, we'd appreciate your contribution!
Hey @janklimo, the problem here is that you are calling `verifyRequest` for the `/` endpoint (and for static pages). With the new session token authentication, your app should always load...
@mirceapiturca it's hard to say why you're getting that intermittent error, but that message happens when your app tries to load a session that has not been created yet. Your...
Hey @mirceapiturca, I think all you're lacking is to change the line ```ts router.get("(.*)", verifyRequest(), handleRequest); // Everything else must have sessions ``` to ```ts router.get("(.*)", verifyRequest({accessMode: 'offline'}), handleRequest); //...
That's a great find @mmccall10! I tested this myself ~15 times but unfortunately I couldn't reproduce the error. We'll improve that code to throw a different error on a missing...
Hey everyone, let me see if I can answer some questions: The GraphQL proxy is actually not supposed to be used with offline tokens, because users shouldn't be able to...
Thanks @jt274, couldn't have said it better myself - the library can work with both offline and online tokens at the same time, they will be different sessions. Just to...
That's a very interesting suggestion @mayrsascha, thank you for this! We'll see if we can add the session to the `state` if `verifyRequest` is successful.
Thanks for pointing this out, we'll look into it!
Hey @Steven4294, it seems like you're mounting the GraphQL proxy as your root at`/shopifyapp`, which is what the Admin page will try to load (as per your settings). You'll need...