Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Get Transaction Info request #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions AppStoreServerApi/AppleAppstoreClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ private bool TokenExpired

return await this.MakeRequest<HistoryResponse>($"{this.BaseUrl}/inApps/v1/history/{originalTransactionId}{query}");
}

// https://developer.apple.com/documentation/appstoreserverapi/get_transaction_info
public async Task<TransactionInfoResponse?> GetTransactionInfo(string transactionId)
{
return await this.MakeRequest<TransactionInfoResponse>($"{this.BaseUrl}/inApps/v1/transactions/{transactionId}");
}

// https://developer.apple.com/documentation/appstoreserverapi/get_all_subscription_statuses
public async Task<StatusResponse?> GetSubscriptionStatuses(string originalTransactionId)
Expand Down
11 changes: 11 additions & 0 deletions AppStoreServerApi/Models/TransactionInfoResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace AppStoreServerApi.Models
{
// https://developer.apple.com/documentation/appstoreserverapi/transactioninforesponse
public class TransactionInfoResponse
{
/// <summary>
/// JWSTransaction
/// </summary>
public string SignedTransactionInfo { get; set; } = null!;
}
}