在挣扎了几天试图让某些东西工作但无处可去之后,我想知道是否有人已经让 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 模块有任何经验,以及它需要什么数据,那就太好了。我将提供我需要的任何代码示例,因为我已经为此过程奋斗了几天。
谢谢!