我必须使用 perl 脚本与 iOS 上的 App Purchase 中的 verifReceipt 交互。我也用 phoneGap 1.5.0
1/ 当我尝试使用外部 url 时它不起作用。2/ 我尝试在 phonegap html 页面和 iTunes 之间使用 perl 脚本接口。我不明白如何发送数据。我试试这个:
$val contains JSON object with receiptvalue and password, receiving from phonegap.
my %transformfields = (
"receipt-data" => $val,
);
my $ua = LWP::UserAgent->new;
my $req = POST($urlsend,
Content_Type => 'application/json ; charset=UTF-8',
Content => \%transformfields,
#Content => $val,
);
my $res = $ua->request($req);
我总是出现这个错误:21002 java.lang.NullPointerException 我不明白这怎么可能用 perl 脚本发送数据。