谷歌结帐接受英国境外付款
我有一个谷歌结帐帐户。但它不接受来自英国境外的付款。 google checkout 可以用来接受英国境外付款吗?如果可能的话,我需要在哪里更改设置以接受来自几乎所有国家/地区的付款。
我在 joomla 的 rock fast cart 组件中使用 google checkout。
I have a google checkout account. But its not accepting payments from abroad UK.
did google checkout can be used to accept payments abroad UK. If that is possible then where does I need to change the setting to accept payments from almost all countries.
I am using google checkout in rock quick cart component of joomla.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自谷歌的文档:
您或您的买家很可能不在列出的国家/地区之一。不应该有任何额外的设置来接受外国付款。
From Google's documentation:
Chances are that either you or your buyer are not in one of the countries listed. There shouldn't be any additional settings to take foreign payments.
解决方案取决于向客户和卖家抛出的错误(可在“工具”>“集成控制台”中找到)。
如果没有有关所面临错误的具体详细信息,我无法判断它是否适用于您的特定问题,但通常它会显示类似以下内容:我们不运送到此位置。发生这种情况是因为您尚未配置运输选项。默认情况下,允许运送的区域仅限于注册商户帐户的国家/地区。因此,您需要明确指定您需要进行国际运输。为此,请使用
标记。示例代码:
此代码允许运送到除美国之外的世界各地。
注意:请勿在
中使用
,因为它会覆盖您的
代码> 并阻止所有运输区域。参考链接:排查 Merchant Center 和 Checkout API 问题
The solution depends on the error that is being thrown, both to the customers as well as to the seller (available in Tools > Integration Console).
I can't say whether it applies to your specific problem without having specific details about the error being faced, but usually it shows something like: We do not ship to this location. This happens because you have not configured the shipping options. By default, the regions allowed for shipping are limited to the country for which the merchant account is registered. So you need to explicitly specify that you need to ship internationally. Use the
<world-area/>
tag for this purpose.Example code:
This code allows to ship everywhere in the world except in US.
CAUTION: Do not use
<world-area/>
in<excluded-areas>
as it will override your<allowed-areas>
and block all shipping regions.Reference link: Troubleshooting Merchant Center and Checkout API Issues
如果您是美国或英国的商家,您可以接受国际付款。
请参阅这篇有关国际运输的博文:
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
If you are a US or UK based merchant you can accept international payments.
See this blog post about international shipping:
http://googlecheckoutapi.blogspot.com/2007/04/introducing-international-shipping.html
See this doc about implementing international shipping and taxes:
https://checkout.google.com/support/sell/bin/answer.py?answer=71391
See this article for troubleshooting international shipping issues, in particular the 'does not ship to' error message:
http://code.google.com/apis/checkout/articles/Troubleshoot_Merchant_Issues.html