Valery Orloff

Results 32 comments of Valery Orloff

Yes, this solved! I also leaning towards this conclusion before your post But that's only half of the problem. Remain problem of page reload (FastRefresh) during dev process, which throws...

Hi @akhilmhdh! the problem lies somewhere inside `@shopify/koa-shopify-auth`, as far as i understand, React Fast Refresh loses session token, and it takes a lot of time to resume work, you...

same problem! after registration app i have valid session object, with which I can make requests, for example Assets API, but when I uninstall the app, I try to retrieve...

> I was thinking on maybe create a function that directly checks the database I've tried it already (with accessToken). If session is undefined, its values from the database are...

Confirm it! In my opinion, the problem is related to the auth token is lost after route to index page. need to save it and use it for following routing....

Confirmed! App does authenticate well and loads index page fine, but other navigations results 'bad request'. Reload page results 'InternalServerError: Cannot complete OAuth process. Could not find an OAuth cookie...

the clientRouter in the tutorial code was originally, this does not affect in any way, problem does't solved! After install app succesfully loaded index page, following navigations by nav links...

Routing like `redirect.dispatch(Redirect.Action.APP, {path: '/edit-collection', newContext: true});` works ok, but routing by nav links return bad request crash. Do I understand correctly that the clientRouter makes Embedded App Navigation links...

My issue with "index" page solved thanks to this [hint](https://github.com/Shopify/shopify-app-node/issues/585#issuecomment-807481767) But that's only half of the problem. Remain problem of devServer page reload during development process, which throws out `GET...

> ```js > a[[.subscribe(Redirect.ActionType.APP, ({ path }) => { > Router.push(path); > }); > ``` Hi! Please, explain this section Maybe, appBridge is app and Router is router?