@@ -62,6 +62,7 @@ public SignedDataVerifier(Set<InputStream> rootCertificates, String bundleId, Lo
62
62
63
63
/**
64
64
* Verifies and decodes a signedTransaction obtained from the App Store Server API, an App Store Server Notification, or from a device
65
+ * @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwstransaction">JWSTransaction</a>
65
66
*
66
67
* @param signedTransaction The signedTransaction field
67
68
* @return The decoded transaction info after verification
@@ -80,6 +81,7 @@ public JWSTransactionDecodedPayload verifyAndDecodeTransaction(String signedTran
80
81
81
82
/**
82
83
* Verifies and decodes a signedRenewalInfo obtained from the App Store Server API, an App Store Server Notification, or from a device
84
+ * @see <a href="https://developer.apple.com/documentation/appstoreserverapi/jwsrenewalinfo">JWSRenewalInfo</a>
83
85
*
84
86
* @param signedRenewalInfo The signedRenewalInfo field
85
87
* @return The decoded renewal info after verification
@@ -95,6 +97,7 @@ public JWSRenewalInfoDecodedPayload verifyAndDecodeRenewalInfo(String signedRene
95
97
96
98
/**
97
99
* Verifies and decodes an App Store Server Notification signedPayload
100
+ * @see <a href="https://developer.apple.com/documentation/appstoreservernotifications/signedpayload">signedPayload</a>
98
101
*
99
102
* @param signedPayload The payload received by your server
100
103
* @return The decoded payload after verification
@@ -142,6 +145,8 @@ protected void verifyNotification(String bundleId, Long appAppleId, Environment
142
145
143
146
/**
144
147
* Verifies and decodes a signed AppTransaction
148
+ * @see <a href="https://developer.apple.com/documentation/storekit/apptransaction">AppTransaction</a>
149
+ *
145
150
* @param signedAppTransaction The signed AppTransaction
146
151
* @return The decoded AppTransaction after validation
147
152
* @throws VerificationException Thrown if the data could not be verified
0 commit comments