You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clarify usage: Update documentation and function signature (e.g., rename GetTransactionHistory(ctx context.Context, originalTransactionId string, ...)) so it is explicit that the latest transaction ID should be passed if the caller wants a full transaction history.
@erikd234 , Thank you very for your question. The function signature has been updated in the latest version. Please let me know if something incorrect.
Title
Discrepancy in
PathTransactionHistory
URL vs. Apple’s Documentation caused me great confusionDescription
Currently, GOIAP uses:
However, according to Apple’s documentation ([Get Transaction History](https://developer.apple.com/documentation/appstoreserverapi/get_transaction_history)), the path parameter
{transactionId}
need not be the original transaction ID. It can be any valid transaction ID—including the most recent one—to retrieve the full transaction history.Suggested Improvements
PathTransactionHistory
to usetransactionId
instead oforiginalTransactionId
, e.g.:GetTransactionHistory(ctx context.Context, originalTransactionId string, ...)
) so it is explicit that the latest transaction ID should be passed if the caller wants a full transaction history.Additional Context
The text was updated successfully, but these errors were encountered: