0

我正在尝试在安装我的 shopify 应用程序时创建一个 webhook(订单/创建),但我无法使其工作。尝试创建 webhook 时,我收到错误“无法处理的实体”。以下是我目前正在使用的代码。你能帮我解决这个错误吗?

    if (isset($_GET['code'])) {
    $shopifyClient = new ShopifyClient($_GET['shop'], "", API_KEY, SECRET);
    session_unset();
    $_SESSION['token'] = $shopifyClient->getAccessToken($_GET['code']);
    if ($_SESSION['token'] != '')
        $_SESSION['shop'] = $_GET['shop'];
    $shopifyClient = new ShopifyClient($_GET['shop'], $_SESSION['token'], API_KEY, SECRET);
    $charge = array("webhook"=>array("topic"=>"orders/create","address"=>"http://localhost/xxxxx/test.php","format"=>"json"));
    try
    {
      $webhooks = $shopifyClient->call('POST','/admin/webhooks.json',$charge);
    } catch(Exception $e){
      //do something with the Exception
      echo $e->getMessage();
      exit;
    }
    header("Location: http://localhost/xxxxx/index.php");
    exit;
}
4

1 回答 1

1

可能不是您的主要问题(可能是),但 Shopify 不会添加 localhost webhook。尝试使用https://forwardhq.com/之类的方法在您的应用程序中测试 webhook,或者如果您只想检查它们,请尝试使用http://requestb.in/ 。

于 2013-09-08T04:06:46.800 回答