Hi here,
https://developer.apple.com/documentation/appstoreconnectapi/creating_api_keys_for_app_store_connect_api
this link pecify that I need Admin right to create keys, which I am.
But while I can see now the new "key" tab, I can't create a new key, I need to ask permission from the account owner.
What is happening ??? Any help
Post
Replies
Boosts
Views
Activity
You can access all passes from the library with PXPassLibrary().passes()
Then you can check in this list if you already have the pass for your properties
exemple with primaryAccountId
currentWalletPass = allPasses?.first(where: { (onePass) -> Bool in
if let passPrimaryAccountId = onePass.paymentPass?.primaryAccountIdentifier, passPrimaryAccountId == "one account id"
{
return true
}
else
{
return false
}
})
you can also check wether the pass is on the iPhone or on a remote device (like a watch)
Hi ,
Any update on this question ? (facing the same probleme here)
Thanks a lot