solved the issue with newly created kid
(only change kid, the rest of our program code unchange)
---before 2025/01/15---
the following kid both working (download file readable)
7GLM****** - (Role: FINANCE)
UFN6****** - (Role: SALES, ACCESS_TO_REPORTS
---after 2025/01/15---
kid (Role: FINANCE) not working (file not readable)
7GLM****** - (Role: FINANCE)
UFN6****** - (Role: SALES, ACCESS_TO_REPORTS)
but if we create a new kid (Role: FINANCE), the download file is readable again
4T8T****** - (Role: FINANCE)
Post
Replies
Boosts
Views
Activity
seems c# HttpWebRequest.AutomaticDecompression not work for salesReports api response now
HttpWebRequest.AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip;
expected content (in the past)
Provider Provider Country SKU...
APPLE US ...
current content
? 埣Y?/??劭? KFf? ca?J&_??剪F Nw????揹憯k...
????磉?#?嵃 F??袙v|w~S^媋...
tried changing encoding not work
sample response
{
"data": [
{
"type": "users",
"id": "b13c608c-92e6-4292-9803-df65d4b6b527",
"attributes": {
"username": "****",
"firstName": "***",
"lastName": "***",
"roles": [
"GENERATE_INDIVIDUAL_KEYS",
"APP_MANAGER",
"CUSTOMER_SUPPORT",
"SALES"
],
"allAppsVisible": true,
"provisioningAllowed": false
},
"relationships": {
"visibleApps": {
"links": {
"self": "https://api.appstoreconnect.apple.com/v1/users/b13c608c-92e6-4292-9803-df65d4b6b527/relationships/visibleApps",
"related": "https://api.appstoreconnect.apple.com/v1/users/b13c608c-92e6-4292-9803-df65d4b6b527/visibleApps"
}
}
},
"links": {
"self": "https://api.appstoreconnect.apple.com/v1/users/b13c608c-92e6-4292-9803-df65d4b6b527"
}
}
]
}