Hello everyone,
I'm currently in the process of updating my code to remove the deprecated verifyReceipt method in line with the latest documentation and guidelines.
I have a question regarding the Receipt Usage example provided in the documentation here: https://github.com/apple/app-store-server-library-java?tab=readme-ov-file#receipt-usage
ReceiptUtility receiptUtil = new ReceiptUtility();
String transactionId = receiptUtil.extractTransactionIdFromAppReceipt(appReceipt);
My question is: Why does this method only return one transactionId? I had assumed that it might return a list of different transaction IDs present in the encoded receipt.
Thank you in advance for any assistance!
Best regards,
Maria