Skip to content

Instantly share code, notes, and snippets.

@alvaroroyo
Created September 24, 2019 11:37
Show Gist options
  • Save alvaroroyo/2f38c035a83ad25eb8f955b173419a8d to your computer and use it in GitHub Desktop.
Save alvaroroyo/2f38c035a83ad25eb8f955b173419a8d to your computer and use it in GitHub Desktop.
var receiptData: String? {
guard
let url = Bundle.main.appStoreReceiptURL,
let data = try? Data(contentsOf: url)
else { return nil }
return data.base64EncodedString()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment