サーバー側で支払い領収書を確認しようとしています。私は{"status":21002, "exception":"java.lang.IllegalArgumentException"}
見返りを得ています
コードは次のとおりです。
private final static String _sandboxUriStr = "https://sandbox.itunes.apple.com/verifyReceipt";
public static void processPayment(final String receipt) throws SystemException
{
final BASE64Encoder encoder = new BASE64Encoder();
final String receiptData = encoder.encode(receipt.getBytes());
final String jsonData = "{\"receipt-data\" : \"" + receiptData + "\"}";
System.out.println(receipt);
System.out.println(jsonData);
try
{
final URL url = new URL(_sandboxUriStr);
final HttpURLConnection conn = (HttpsURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoOutput(true);
final OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(jsonData);
wr.flush();
// Get the response
final BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null)
{
System.out.println(line);
}
wr.close();
rd.close();
}
catch (IOException e)
{
throw new SystemException("Error when trying to send request to '%s', %s", _sandboxUriStr, e.getMessage());
}
}
私の領収書は次のようになります。
{\n\t"signature" = "[exactly_1320_characters]";\n\t"purchase-info" =
"[exactly_868_characters]";\n\t"environment" = "Sandbox";\n\t"pod" =
"100";\n\t"signing-status" = "0";\n}
BASE64 でエンコードされたレシートを含むレシート データは、次のようになります。
{"receipt-data" : "[Block_of_chars_76x40+44=3084_chars_total]"}
ここで言及されているように、受信文字列から応答 JSON を取得する方法のアイデアまたはサンプル コードを誰かが持っていますか?