1

我是从谷歌帮助下载并编辑谷歌结帐的代码。在这里我在我的网站中指定了 murchent 计算 url。但该功能在我的网站中不起作用。这是我的代码函数 UseCase3() { //创建一个新的购物车对象$merchant_id = "xxxxxxxxxxxxx"; // 您的商户 ID $merchant_key = "xxxxxxxxxxxxx"; $server_type = "沙盒"; $货币=“美元”;$cart = new GoogleCart($merchant_id, $merchant_key, $server_type, $currency);

// Add items to the cart
$item = new GoogleItem("MegaSound 2GB MP3 Player", 
    "Portable MP3 player - stores 500 songs", 1, 175.49);
$item->SetMerchantPrivateItemData("<color>blue</color><weight>3.2</weight>");
$cart->AddItem($item);

// Add merchant calculations options
$cart->SetMerchantCalculations(
    "https://mysite.com/google2/demo/responsehandlerdemo.php",
    "false", // merchant-calculated tax
    "true", // accept-merchant-coupons
    "true"); // accept-merchant-gift-certificates

// Add merchant-calculated-shipping option
$ship = new GoogleMerchantCalculatedShipping("2nd Day Air", // Shippping method
                                             10.00); // Default, fallback price
$restriction = new GoogleShippingFilters();
$restriction->AddAllowedPostalArea("GB");
$restriction->AddAllowedPostalArea("US");
$restriction->SetAllowUsPoBox(false);
$ship->AddShippingRestrictions($restriction);

$address_filter = new GoogleShippingFilters();
$address_filter->AddAllowedPostalArea("GB");
$address_filter->AddAllowedPostalArea("US");
$address_filter->SetAllowUsPoBox(false);
$ship->AddAddressFilters($address_filter);

$cart->AddShipping($ship);

// Set default tax options
$tax_rule = new GoogleDefaultTaxRule(0.15);
$tax_rule->SetWorldArea(true);
$cart->AddDefaultTaxRules($tax_rule);

$cart->AddRoundingPolicy("UP", "TOTAL");
  // Specify <edit-cart-url>
$cart->SetEditCartUrl("https://mysite.com/google/demo/cartdemo.php");

// Specify "Return to xyz" link
$cart->SetContinueShoppingUrl("https://mysite.com");
// Display XML data
// echo "<pre>";
// echo htmlentities($cart->GetXML());
// echo "</pre>";

// Display a disabled, small button
echo $cart->CheckoutButtonCode("SMALL");

}

4

1 回答 1

0

说明:

  1. Merchant Calculations URL - 顾名思义,是 Google 将用于发送运费和税金、促销计算的回调请求的 URL。这就是Merchant Calculations API中记录的目的。它是结帐阶段的一部分(向 Google 发送信息以进行结帐)。
  2. API 回调 URL -在您的帐户(集成设置)中设置,不会在任何请求中发送(与商家计算 URL 不同),并且是 Google 将通知发送到的 URL,如Notification API中所述。这是您需要实现的 API,以便从 Google 获取数据(从 Google 获取信息 - 例如在结帐后

所以这些 urls/APIs 服务于不同的目的。

根据您的评论:

用户通过 Google 结帐付款后,我需要执行一个 php 文件

您需要实现通知 API(商家计算 url/api不是您需要的)。

于 2012-05-08T14:47:44.110 回答