I use same token to access api "https://api.appstoreconnect.apple.com/v1/apps"
First time, I receive 403 FORBIDDEN, but I access again, it reponse 200
I receivced different response, when use the same token, reponse format below:
1. First time
"errors": [
{
"status": "403",
"code": "FORBIDDEN",
"title": "Access Unavailable",
"detail": "You currently don't have access to this resource. To resolve this issue, the Account Holder must agree to the latest Program License Agreement in their account on the Apple Developer website. https://developer.apple.com/account"
}
]
}
2. Second time, response
"data": [],
"links": {
"self": "https://api.appstoreconnect.apple.com/v1/apps"
},
"meta": {
"paging": {
"total": 0,
"limit": 50
}
}
}