5

我在 infusionsoft api 中添加一个 orderitem .. 但我收到语法错误但我无法找到。

 require_once($_SERVER['DOCUMENT_ROOT']."/infusionsoftAPI/src/isdk.php");
 $app = new iSDK;

 $_REQUEST['contactId'] = 4;

 if(!empty($_REQUEST['contactId']))
 {
    if ($app->cfgCon("aaaa", 'eeeeeeeeeeeeeeeeeeeeeeeeeeeeeee')) {
        echo "Infusionsoft Connection Successfulls";
    } else {
        echo "Infusionsoft Connection Failed";
        exit;
    }
} else {
    echo '<p>No contact id selected.</p>';
    exit();
}
some code
some code
$invoiceId = $app->blankOrder($contactId,"Video Report Subscription - Extra", $oDate,0,0);
$extra_price = $extraemail * $result['price_after_expire'];

$ordresult = $app->addOrderItem($invoiceId, 4, 9, $extra_price, 1, "helloo", "aaaaaa");

我收到这个错误

错误:-1 - 没有方法匹配参数:java.lang.String、java.lang.Integer、java.lang.Integer、java.lang.Integer、java.lang.Integer、java.lang.Integer、java.lang。字符串,java.lang.String

但是当我写

  $ordresult = $app->addOrderItem($invoiceId, 4, 9, 22.00, 1, "helloo", "aaaaaa");

它有效..问题是它没有得到 $extra_price 作为它的论点..

4

1 回答 1

3

看起来$extra_price是一个整数,但addOrderItem需要一个浮点数。尝试:

$ordresult = $app->addOrderItem($invoiceId, 4, 9, floatval($extra_price), 1, "helloo", "aaaaaa");

参考:InvoiceService addOrderItem API

于 2015-03-03T09:42:48.070 回答