AppAttest
AppAttest copied to clipboard
A Swift implementation of the App Attest protocol, which checks whether clients connecting to your server are valid instances of your app.
In Readme it's unclear where, on the server or on the client, each peace of code is executed. Apart from this: When to use "Verify an attestation" and when "Verify...
What's the URL for "My server Apple AppAttest Server" verification? It should've been something like `https://api.appattest.apple.com/v1/{app_attest_key_id}` However I haven't found anything similar in the Internet, not even `api.appattest.apple.com`
Hi! Regarding this code example: ``` // Retrieve these values from the HTTP request // that your app sends to the server let assertion: Data = ... let keyID: Data...
Such an easy way to understand how to verify attestation on server side in Swift. Thank you :) I was a bit confused with what `keyID` means when initializing `AttestationRequest`....
Hello, thanks so much for this library and nice work. I was wondering if you have any plans to add receipts validation? Correct me if I am wrong, but I...