Песочница Google Checkout не работает

Я создал учетную запись продавца Sanbox в Google Checkout, но когда я отправил эту форму, я получил это сообщение об ошибке «Ой! Билал отправил Google корзину с ошибками. Мы свяжемся с ними, чтобы попросить их решить эту проблему. это может быть временная проблема, вы можете вернуться в свой браузер, чтобы попробовать проверить еще раз. Информация об отладке

If you are acting on behalf of the merchant, more information about this error has been made available in the Integration Console under the Tools section. You can access the details of this error directly by logging into your merchant account and then pasting the following url:
https://sandbox.google.com/checkout/sell/settings?section=IntegrationConsole&returnURL=https%3A%2F%2Fsandbox.google.com%2Fcheckout%2Fsell%2Fsettings%3Fsection%3DIntegrationConsole&serialNumber=523b617a-106c-4c87-a2cc-135e20c983eb "


The Form that i have created as follows:

     var output_data1 =   <form   id ="GC" name="GC" method="POST" action="https://sandbox.google.com/checkout/api/checkout/v2/checkoutForm/Merchant/ 922635804601464" accept-charset="utf-8">';
                                        output_data1 += "Please wait while we are redirecting to the Payment Gateway.";
                                        output_data1 += '<input type="hidden" name="item_name_1" value="'+monument_name+'">';
                                        output_data1 +='<input type="hidden" name="item_description_1" value="'+monument_color+'">';
                                        output_data1 += '<input type="hidden" name="item_quantity_1" value="1">';
                                        output_data1 += '<input type="hidden" name="item_price_1" value="'+AMOUNT+'">';
                                        output_data1 += '<input type="hidden" name="item_currency_1" value="USD">';
                                        output_data1 += '<input type="hidden" name="ship_method_name_1" value="UPS Ground">';
                                        output_data1 += '<input type="hidden" name="ship_method_price_1" value="0.0">';
                                        output_data1 += 

'<input type="hidden" name="ship_method_currency_1" value="USD">';
                                        //output_data1 += '<input type="hidden" name="tax_rate" value="0.0875">';
                                        output_data1 += '<input type="hidden" name="tax_us_state" value="CA">';

                                        output_data1 += '<input type="hidden" name="checkout-flow-support.merchant-checkout-flow-support.continue-shopping-url" value="http://www.thegranitemonumentcompany.com/p/Main">';

                                        output_data1 += '<input type="hidden" name="_charset_">';
                                        output_data1 += '</form>'

person user493619    schedule 25.04.2011    source источник


Ответы (1)


По вашему описанию сложно сказать, в чем проблема. Я включаю две статьи об устранении ошибок Checkout, надеюсь, это поможет.

Google Checkout — Устранение ошибки при публикации корзины Oops:

http://code.google.com/apis/checkout/articles/Google_Checkout_Cart_Post_Troubleshooting.html

Устранение ошибок консоли интеграции:

http://code.google.com/apis/checkout/articles/Troubleshoot_Integration_Console_Errors.html

person Mihai Ionescu    schedule 13.06.2011