在shopify应用中添加script_tag时出错

时间:2018-09-28 11:39:17

标签: shopify shopify-app script-tag

我已经参考本教程使用php创建了shopify应用

https://github.com/phpish/shopify_app-skeleton

现在我正在尝试使用此代码在我的shopify应用中添加script_tag

    $shopify = shopify\client($_SESSION['shop'], SHOPIFY_APP_API_KEY, $_SESSION['oauth_token']);
    $post_url = 'https://'.$_SESSION['shop'].'/admin/script_tags.json';

    $script_tag = [
        'script_tag' => [
            'src' => 'https://1d1d24b9.ngrok.io/new_prj/shopify.js', 
            'event' => 'onload'
            ]
    ];
$response = $shopify('POST', $post_url, [
    'json'    => $script_tag,
    'headers' => ['X-Shopify-Access-Token' => $_SESSION['oauth_token']]
]);

但是我收到libcurl错误

Fatal error: Uncaught phpish\shopify\CurlException: [1] Protocol "?https" not supported or disabled in libcurl

任何人都可以解释如何解决此错误,或者请参考一些有关“如何在使用PHP的商店中添加脚本标记”的教程。 任何帮助将不胜感激。 谢谢。

0 个答案:

没有答案