提交表单:<form action="https://checkout.google.com/api/checkout/v2/checkoutForm/Merchant/1234567890" id="BB_BuyButtonForm" method="post" name="BB_BuyButtonForm">
    <input name="item_name_1" type="hidden" value="Pay Chinese Study Tool Service"/>
    <input name="item_description_1" type="hidden" value="Service charge for using the online tool for interactive learning of Chinese."/>
    <input name="item_quantity_1" type="hidden" value="1"/>
    <input name="item_price_1" type="hidden" value="2.0"/>
    <input name="item_currency_1" type="hidden" value="USD"/>
    <input name="_charset_" type="hidden" value="utf-8"/>
    <input alt="" src="https://checkout.google.com/buttons/buy.gif?merchant_id=932567502202026&w=117&h=48&style=white&variant=text&loc=en_US" type="image"/>
</form>帮助文档
http://code.google.com/apis/checkout/developer/Google_Checkout_HTML_API.html#notification_api请问怎样接收google的返回信息...

解决方案 »

  1.   

    支付的时候一般都会有一个返回值的,,成功(Y),失败(N),,我就想知道他支付成功还是失败了...国内的支付接口很好实现(现在不能用国内的),,但google这个看着头就大了,,
      

  2.   

    saucer怎么没在线呀?
    快沉了  up up
      

  3.   

    首先进入google checkout账户,输入callback url(https://xx/callback.aspx)
    callback.aspx.csStream RequestStream = Request.InputStream;
    StreamReader RequestStreamReader = new StreamReader(RequestStream);
    string RequestXml = RequestStreamReader.ReadToEnd();
    RequestStream.Close();XmlDocument doc = new XmlDocument();
    doc.LoadXml(RequestXml);
    //分析xml doc
    //doc.Save(path);
    保存一下doc就知道什么内容了(一般checkout会发送三份xml文档)
      

  4.   

    我也在做google接口,现在遇到的问题是:
    在通过立即购买按钮连接到google支付页面后(我用的都是sandbox用户名),在付款页面总是显示以下错误信息:
    付款方式:
    VISA xxx-3456 - 无效VISA xxx-3456 - 无效VISA xxx-3456 - 无效VISA xxx-3456 - 无效添加新的付款方式。您当前的付款方式(付款方式)无效
    要完成本次购买操作,请输入新的付款方式。
    请问应当怎么解决这个问题?