我有一个Google Checkout帐户。但它不接受来自英国国外的付款。 谷歌结账可以用来接受英国境外的付款。如果可以,那么我需要在哪里更改设置以接受来自几乎所有国家/地区的付款。
我在joomla的摇滚快速推车组件中使用google checkout。
答案 0 :(得分:1)
来自Google的文档:
Google Checkout适用于在多个地点拥有帐单邮寄地址的购物者。如果卖家提供此选项,买家也可以在国际上发货。要查看您是否可以注册或将购买内容发送到您所在的位置,请查看sign-up page上的位置:下拉菜单。请注意,虽然您可以从Google购买Google地球产品,但除非您的国家/地区已列出,否则您将无法向其他提供Google Checkout的卖家购买产品。
在列表中看不到您的位置?我们正努力尽可能广泛地提供Google Checkout,我们期待很快将我们的服务扩展到更多地点。
您或您的买家可能不在列出的某个国家/地区。不应该有任何额外的设置来支付国外款项。
答案 1 :(得分:1)
解决方案取决于向客户和卖家提供的错误(在工具> Integration Console中可用)。
如果没有关于所面临的错误的具体细节,我不能说它是否适用于您的具体问题,但通常它会显示如下内容:我们不会发送到此位置。发生这种情况是因为您尚未配置送货选项。默认情况下,允许运送的区域仅限于商家帐户注册的国家/地区。因此,您需要明确指定您需要国际运输。为此,请使用<world-area/>
标记
示例代码:
<shipping-methods>
<merchant-calculated-shipping name="SuperShip International">
<price currency="USD">14.00</price>
<address-filters>
<allowed-areas>
<world-area/>
</allowed-areas>
<excluded-areas>
<postal-area>
<country-code>US</country-code>
</postal-area>
</excluded-areas>
</address-filters>
</merchant-calculated-shipping>
</shipping-methods>
此代码允许在世界各地发货,但美国除外
注意:请勿在{{1}}中使用<world-area/>
因为它会覆盖您的<excluded-areas>
并阻止所有送货区域。
参考链接:Troubleshooting Merchant Center and Checkout API Issues
答案 2 :(得分:0)
如果您是美国或英国的商家,则可以接受国际付款。
请参阅此博客文章,了解国际运费:
http://googlecheckoutapi.blogspot.com/2007/04/introducing-international-shipping.html
请参阅此文档,了解如何实施国际运费和税收:
https://checkout.google.com/support/sell/bin/answer.py?answer=71391
请参阅此文章以解决国际送货问题,尤其是“未收到邮件”错误消息:
http://code.google.com/apis/checkout/articles/Troubleshoot_Merchant_Issues.html