php - app not installed shopify -


i have app logistic web shohpify show me message:

enter image description here

i read apparently shopify has changed how want authenticate app, @ moment can´t install app.

this code:

require __dir__.'/vendor/autoload.php';     use phpish\shopify;      require __dir__.'/conf.php';      # guard: http://docs.shopify.com/api/authentication/oauth#verification     shopify\is_valid_request($_get, shopify_app_shared_secret) or die('invalid request! request or redirect did not come shopify');       # step 2: http://docs.shopify.com/api/authentication/oauth#asking-for-permission     if (!isset($_get['code']))     {          $permission_url = shopify\authorization_url($_get['shop'], shopify_app_api_key, array('write_shipping', 'read_orders'));         die("<script> top.location.href='$permission_url'</script>");      } 

there discussion on github. see: https://github.com/phpish/shopify_app-skeleton/issues/19

as quick fix can comment out request validation in oauth.php

# guard: http://docs.shopify.com/api/authentication/oauth#verification //shopify\is_valid_request($_get, shopify_app_shared_secret) or die('invalid request! request or redirect did not come shopify');