$shopify = \App::make("ShopifyAPI"); $shopify->setup([ 'API_KEY' => bla bla bla , 'API_SECRET' => ble ble ble, 'SHOP_DOMAIN' => blip blop, 'ACCESS_TOKEN' => password ]);
for some reason when it is in localhost it didn't fail to run until it went to the ssl certicate to local user
but when uploaded to the server the problem became class not found
and also it also mess everything else with it like it crash in config/app.php
PS the server had have some issue to identify routes not sure if this is the problem but other service provider works fine ......
config/app.php
"RocketCode\Shopify\ShopifyServiceProvider",
controller
$shopify = \App::make("ShopifyAPI"); $shopify->setup([ 'API_KEY' => bla bla bla , 'API_SECRET' => ble ble ble, 'SHOP_DOMAIN' => blip blop, 'ACCESS_TOKEN' => password ]);
for some reason when it is in localhost it didn't fail to run until it went to the ssl certicate to local user
but when uploaded to the server the problem became class not found and also it also mess everything else with it like it crash in config/app.php
PS the server had have some issue to identify routes not sure if this is the problem but other service provider works fine ......