how to successfully install App into Test Store?

723 Views Asked by At

I am facing the problem of installation Shopify App into Test Store. I have used the same code for the App which is given by shopify_app-skeleton. My conf.php code is:

<?php
    define('SHOPIFY_APP_API_KEY', '5301a720e59f3d95bbb71284d1292d7f');
    define('SHOPIFY_APP_SHARED_SECRET', '30d6c4103712ca6dc3ffc37e76f739ec');
    define('REDIRECT_URL', 'http://localhost/shopify/app1/newPrj/getproducts.php ');

Still I have the problem to access App into the store and getting the same problem.

I get that error after click on Install App from the Store dashboard. Means after running this link: http://localhost/shopify/app1/new_prj/install.php?shop=fashionstar-3.myshopify.com It redirects to store screen where a user clicks on Install App. - Screenshot

When I click on the Install App it is not getting anything as an output. It shows install status on my App developer dashboard but does not redirect to get_products.php page.

1

There are 1 best solutions below

0
On

Vidhi, you can use a tool called ngrok to create a tunnel between Shopify and your localhost. After this you can run the app from your localhost.

And you better use a PHP SDK for Shopify (there are many unofficial SDKs available), than performing direct HTTP requests.