8

在Apple服务器验证Apple IOS应用内购买收据时,我们的一些交易返回为:

{"status":21002,"exception":"java.lang.NumberFormatException"}

我可以知道问题的原因是什么吗?我们已遵循 Apple 应用内购买指南,即我们将使用来自 iOS 客户端的 Base 64 对应用商店退货收据进行编码,然后发送收据以进行验证

注意:我们的大部分交易都通过了,大约有 10% 的交易出现上述错误

4

3 回答 3

8

几个可能的原因:

  • 有人试图破解您的 IAP 收据验证。有一些技术会插入伪造的收据,希望开发人员无法正确验证它们。urus hack 有这种行为。

  • 测试期间的错误导致测试收据发送给生产验证者。

我经常看到这些错误,但我只是不记得这两个中的哪一个导致了这个确切的消息。我认为他们都这样做。看到他们后,我还没有收到客户投诉。

如果您的音量足够低(不幸的是,我的音量足够低),请进入 iTunes Connect 并查看是否有任何与错误匹配的销售。您还可以查看收据数据,看看它是否可疑。

于 2013-03-15T03:39:19.063 回答
0

还有另一种可能性,您只发送 pucharse_info 而不是整个解密的 JSON(带有签名等)

var receipt = Ti.Utils.base64encode(evt.receipt).text;
于 2015-03-11T17:30:51.840 回答
-1

当你验证收据时,也许你可以试试下面的代码:</p>

    NSData *receipt; // Sent to the server by the device

// Create the JSON object that describes the request
NSError *error;
NSDictionary *requestContents = @{
    @"receipt-data": [receipt base64EncodedStringWithOptions:0]
};
NSData *requestData = [NSJSONSerialization dataWithJSONObject:requestContents
                                                      options:0
                                                        error:&error];

if (!requestData) { /* ... Handle error ... */ }

// Create a POST request with the receipt data.
NSURL *storeURL = [NSURL URLWithString:@"https://buy.itunes.apple.com/verifyReceipt"];
NSMutableURLRequest *storeRequest = [NSMutableURLRequest requestWithURL:storeURL];
[storeRequest setHTTPMethod:@"POST"];
[storeRequest setHTTPBody:requestData];

// Make a connection to the iTunes Store on a background queue.
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:storeRequest queue:queue
        completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
    if (connectionError) {
        /* ... Handle error ... */
    } else {
        NSError *error;
        NSDictionary *jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];
        if (!jsonResponse) { /* ... Handle error ...*/ }
        /* ... Send a response back to the device ... */
    }
}];

参考:<a href="https://developer.apple.com/library/content/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104-SW1" rel=" nofollow noreferrer">https://developer.apple.com/library/content/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104-SW1

于 2018-02-02T02:39:46.890 回答