论坛首页 Web前端技术论坛

node.js做app store支付收据的二次验证

浏览 1860 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (12) :: 隐藏帖 (0)
作者 正文
   发表时间:2014-03-06  
  var postdata =
    {
        method: 'POST',
        uri: 'https://sandbox.itunes.apple.com/verifyReceipt',
        multipart:
            [
                { 'content-type': 'text/plain; charset=ISO-8859-1',
                    'body': "{\"receipt-data\":\""+reciept+"\"}"
                }
            ]
    };
    request(postdata, function (error, response, body) {
        if (!error && response.statusCode == 200) {
            console.log("bodytostring---"+JSON.stringify(body));
            console.log("body---"+body);

            callback1(JSON.parse(body));
        }
    });
但是总是返回21002.有哪位大神指点下
论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics