5

在挣扎了几天试图让某些东西工作但无处可去之后,我想知道是否有人已经让 iOS Receipt Validation 在 Node.js 上工作。我已经尝试过在这里找到的节点模块 iap_verifier ,但我无法让它为我正常工作。我从 Apple 服务器收到的唯一回复是 21002,数据格式错误。

对我有用的一件事是对苹果服务器的客户端验证请求,我直接从 Apple此处提供的教程中获得,代码如下所示。

// The transaction looks ok, so start the verify process.

// Encode the receiptData for the itms receipt verification POST request.
NSString *jsonObjectString = [self encodeBase64:(uint8_t *)transaction.transactionReceipt.bytes
                                         length:transaction.transactionReceipt.length];

// Create the POST request payload.
NSString *payload = [NSString stringWithFormat:@"{\"receipt-data\" : \"%@\", \"password\" : \"%@\"}",
                     jsonObjectString, ITC_CONTENT_PROVIDER_SHARED_SECRET];

NSData *payloadData = [payload dataUsingEncoding:NSUTF8StringEncoding];


// Use ITMS_SANDBOX_VERIFY_RECEIPT_URL while testing against the sandbox.
NSString *serverURL = ITMS_SANDBOX_VERIFY_RECEIPT_URL;

// Create the POST request to the server.
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:serverURL]];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:payloadData];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[conn start];

我有一堆不同的代码,我一直在使用这些代码将各种各样的东西发送到我的节点服务器。我所有的不同尝试都失败了。我什至尝试将我在上面的客户端验证示例中构建的“payloadData”汇集到我的服务器,并使用以下代码将其发送到 Apples 服务器:

function verifyReceipt(receiptData, responder)
{

var options = {
    host: 'sandbox.itunes.apple.com',
    port: 443,
    path: '/verifyReceipt',
    method: 'POST',
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        'Content-Length': Buffer.byteLength(receiptData)
    }
};

var req = https.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
        console.log("body: " + chunk);
    });
});

req.write(receiptData);
req.end();
}

函数在哪里传递了payloadData。从Apple收到的响应始终是21002。我仍然基本上是一个节点新手,所以我无法弄清楚到底出了什么问题。我认为当我将数据从 ObjC 发送到我的节点服务器时可能会发生一些数据损坏,所以我可能没有正确传输。

如果有人能指出我正确的方向,或者提供一些他们如何让收据验证在节点中为他们工作的例子,那将是一个很大的帮助。如果有人对 iap_verifier 模块有任何经验,以及它需要什么数据,那就太好了。我将提供我需要的任何代码示例,因为我已经为此过程奋斗了几天。

谢谢!

4

3 回答 3

6

对于使用npm 库 "request"的任何人,这里是如何避免烦人的 21002 错误的方法。

formFields = {
  'receipt-data': receiptData_64
  'password': yourAppleSecret
}

verifyURL = 'https://buy.itunes.apple.com/verifyReceipt' // or 'https://sandbox.itunes.apple.com/verifyReceipt'

req = request.post({url: verifyURL, json: formFields}, function(err, res, body) {
    console.log('Response:', body);
})
于 2014-11-11T19:05:59.400 回答
4

您是否正确编写了receiptData?根据Apple规范,它应该具有格式

{"receipt-data": "your base64 receipt"}

修改使用接收数据对象包装 base64 收据字符串的代码,验证应该有效

function (receiptData_base64, production, cb)
{
    var url = production ? 'buy.itunes.apple.com' : 'sandbox.itunes.apple.com'
    var receiptEnvelope = {
        "receipt-data": receiptData_base64
    };
    var receiptEnvelopeStr = JSON.stringify(receiptEnvelope);
    var options = {
        host: url,
        port: 443,
        path: '/verifyReceipt',
        method: 'POST',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
            'Content-Length': Buffer.byteLength(receiptEnvelopeStr)
        }
    };

    var req = https.request(options, function(res) {
        res.setEncoding('utf8');
        res.on('data', function (chunk) {
            console.log("body: " + chunk);
            cb(true, chunk);
        });
        res.on('error', function (error) {
            console.log("error: " + error);
            cb(false, error);
        });
    });
    req.write(receiptEnvelopeStr);
    req.end();
}
于 2014-04-03T21:22:07.307 回答
4

This is my working solution for auto-renewable subscriptions, using the npm request-promise library. Without JSON stringify-ing the body form, I was receiving 21002 error (The data in the receipt-data property was malformed or missing)

const rp = require('request-promise');

var verifyURL = 'https://sandbox.itunes.apple.com/verifyReceipt';
// use 'https://buy.itunes.apple.com/verifyReceipt' for production

var options = {
    uri: verifyURL,
    method: 'POST',
    headers: {
        'User-Agent': 'Request-Promise',
        'Content-Type': 'application/x-www-form-urlencoded',
    },
    json: true
};

options.form = JSON.stringify({
    'receipt-data': receiptData,
    'password': password
});

rp(options).then(function (resData) {
    devLog.log(resData); // 0
}).catch(function (err) {
    devLog.log(err);
});
于 2017-12-28T10:13:32.287 回答