콜백 URL이 호출되어 처리 할 수 있습니다. 그러나 - Google은 본인의 확인을 처리하지 않습니다. 이것은 모두 EnvironmentType.Sandbox
입니다. 구글 체크 아웃 '통합 콘솔 "에서 Google Checkout 알림 승인 실패
우리는 알림 확인을 처리하는 동안 오류가 발생했습니다. 오류는 다음과 같습니다. 구문 분석 알림 수신 확인 오류.
그리고 세부 사항은 다음과 같습니다 그들이 나를 보내신 무엇 을 : serial-number=...
.
그들이받은 무엇 :
<?xml version="1.0" encoding="utf-8"?>
<notification-acknowledgment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" serial-number="here is the same serial number they sent me" xmlns="http://checkout.google.com/schema/2" />
<!DOCTYPE html...
코드 내가 사용 :
GCheckout.AutoGen.NotificationAcknowledgment response = new GCheckout.AutoGen.NotificationAcknowledgment();
response.serialnumber = serialNumber;
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.BinaryWrite(GCheckout.Util.EncodeHelper.Serialize(response));
HttpContext.Current.Response.StatusCode = 200;
실수가 여기에 무엇입니까?