"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > 인앱 구매 영수증 확인 문제 해결: \"잘못된 상태\" 응답을 처리하는 방법은 무엇입니까?

인앱 구매 영수증 확인 문제 해결: \"잘못된 상태\" 응답을 처리하는 방법은 무엇입니까?

2024-11-09에 게시됨
검색:870

Troubleshooting In-App Purchase Receipt Validation: How to Handle \

인앱 구매 영수증 확인

인앱 구매 확인은 사용자가 합법적인 구매를 했는지 확인하고 앱에 대한 액세스 권한을 부여하는 데 중요합니다. 프리미엄 콘텐츠 또는 기능. 문서가 있음에도 불구하고 효과적인 영수증 검증을 구현하는 것은 어려울 수 있습니다.

한 가지 접근 방식은 영수증 데이터를 PHP 서버로 보낸 다음 확인을 위해 Apple App Store로 전달하는 것입니다. 성공적으로 응답하면 구매의 유효성이 확인되어 서버에 거래 기록을 계속 진행할 수 있습니다.

그러나 영수증 확인 중에 "잘못된 상태" 응답이 표시되는 경우에는 오타가 있는지 확인하는 것이 중요합니다. 당신의 코드. 다음 샘플 코드는 솔루션을 제공합니다.

- (BOOL)verifyReceipt:(SKPaymentTransaction *)transaction {
    NSString *jsonObjectString = [self encode:(uint8_t *)transaction.transactionReceipt.bytes length:transaction.transactionReceipt.length];      
    NSString *completeString = [NSString stringWithFormat:@"http://url-for-your-php?receipt=%@", jsonObjectString];               
    NSURL *urlForValidation = [NSURL URLWithString:completeString];       
    NSMutableURLRequest *validationRequest = [[NSMutableURLRequest alloc] initWithURL:urlForValidation];              
    [validationRequest setHTTPMethod:@"GET"];         
    NSData *responseData = [NSURLConnection sendSynchronousRequest:validationRequest returningResponse:nil error:nil];  
    [validationRequest release];
    NSString *responseString = [[NSString alloc] initWithData:responseData encoding: NSUTF8StringEncoding];
    NSInteger response = [responseString integerValue];
    [responseString release];
    return (response == 0);
}

- (NSString *)encode:(const uint8_t *)input length:(NSInteger)length {
    static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 /=";

    NSMutableData *data = [NSMutableData dataWithLength:((length   2) / 3) * 4];
    uint8_t *output = (uint8_t *)data.mutableBytes;

    for (NSInteger i = 0; i > 18) & 0x3F];
        output[index   1] =                    table[(value >> 12) & 0x3F];
        output[index   2] = (i   1) > 6)  & 0x3F] : '=';
        output[index   3] = (i   2) > 0)  & 0x3F] : '=';
    }

    return [[[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding] autorelease];
}

또한 서버에서 다음 PHP 코드를 사용하여 영수증 확인을 처리하고 거래를 기록할 수 있습니다.

$receipt = json_encode(array("receipt-data" => $_GET["receipt"]));
// NOTE: use "buy" vs "sandbox" in production.
$url = "https://sandbox.itunes.apple.com/verifyReceipt";
$response_json = call-your-http-post-here($url, $receipt);
$response = json_decode($response_json);

// Save the data here!

echo $response->status;

"call-your-http-post-here"를 원하는 HTTP 게시 메커니즘으로 바꾸는 것을 잊지 마세요. 이 코드를 구현하고 정확성을 보장함으로써 영수증 구매를 효과적으로 확인하고 인앱 거래를 자신 있게 관리할 수 있습니다.

릴리스 선언문 이 글은 1729166962에서 재인쇄되었습니다. 침해 내용이 있는 경우, [email protected]으로 연락하여 삭제하시기 바랍니다.
최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3