2011-04-25 6 views
0

Google Checkout에서 sanbox 판매자 계정을 만들었지 만이 양식을 제출하면 "Oops! Bilal에서 Google에 오류가있는 장바구니가 전송되었습니다. 연락 드리겠습니다. 그들은이 문제를 해결하도록 요청합니다.이 임시 문제가 될 수있다, 당신은 다시 확인해보십시오 브라우저에 다시 갈 수 있습니다. 디버깅 정보Google Checkout 샌드 박스가 작동하지 않음

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>' 

답변

0

당신의 설명을 어디에 문제에서 얘기하기 어렵다 두 개의 Checkout 오류 문제 해결 도움말이 포함되어있어 도움이 되었기를 바랍니다.

구글 체크 아웃 - 장바구니 포스트 아차 오류 문제 해결 :

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

관련 문제