Hi, i have seen this post https://community.shopify.com/c/shopify-apis-and-sdks/oauth-flow-unlisted-app/m-p/1117953 and I have a follow up question.
We have a similar setup where we need to assign the access token for a Shopify store to our customer subdomain. As mentioned in the post we could redirect the user to our login page at the end of the OAuth flow. Assuming the user does not complete the login in our app domain I would like to know if it would be possible to issue a new authorize request to
https://{shop}.myshopify.com/admin/oauth/authorize?client_id={api_key}&scope={scopes}&redirect_uri={redirect_uri}&state={nonce}
at a later moment once the user finally login into our app domain to verify she/he is indeed using the correct {shop}. Our app would have already been added within Shopify. If this is not possible is the alternative to remove the app from Shopify and re-add it again (so to start the OAuth flow again and hopefully have the user login into our app domain)?
Thank you.