Search results for

“Request failed with http status code 503”

200,943 results found

Post

Replies

Boosts

Views

Activity

CoreML encrypt exceptions in App Store
I have an app in the App Store that has been running fine. Starting yesterday it began throwing an exception during initialization in the App Store and during development: [0x000...***] during in one-time initialization function for my_model_name at /ViewController.swift:84 Thread 2: EXC_BREAKPOINT (code=1, =***) [coreml] Could not create persistent key blob for ----*** : error=Error Domain=com.apple.CoreML Code=8 Fetching decryption key from server failed. UserInfo=NSLocalizedDescription=Fetching decryption key from server failed., NSUnderlyingError=0x2822c6a60 Error Domain=CKErrorDomain Code=6 CKInternalErrorDomain: 2022 UserInfo=NSDebugDescription=CKInternalErrorDomain: 2022, RequestUID=----, NSLocalizedDescription=Request failed with http status code 503, CKErrorDescription=Request failed with http status code 503, CKRetryAfter=21, NSUnderlyingError=0x2822c6ac0 Error Domai
4
0
1.5k
Oct ’22
MKMapView fail load http 503
Hi all,map stop working suddenly in my app, with this errorHTTPStatus=503, NSErrorFailingURLStringKey=https://gspe11-ssl.ls.apple.com/tile?style=7&size=1&scale=2&v=3093&z=20&x=557993&y=383126&sid=1213967890529405942918252715328700239780&accessKey=1547122673_W4MZQJfmbf7rcgua_XwdrdKcoUajbuWNDHvFkuT4TBqaV8CE3bwoNhAzM6boiO5j%2F%2FV6bajmZL521Ct1wubkSYtLQ34nl8IHVjxYb1y1jGMltenfuSYmWBzLZKdu8RfhoOtn1UGbEWuGy1LN1azDWOrrQvdkdPSWF0GskhBtZ%2BuJnRIlgkvXlG4hsCO%2BtjDOVXRrQ4eu3NwWBBRT7Is Apple server problem?
0
0
594
Jan ’19
Getting HTTP 503 service unavailable while code signing
HiAs of 1:40 PM EST I am getting HTTP 503 error while code signing.Here is a gist of the errorXcode received an HTTP error while attempting to communicate with the portal:service unavailable (503)<https://developerservices2.apple.com/services/QH65B2/viewDeveloper.action?clientId=XABBG36SBA>Please see <https://developer.apple.com/support/system-status/> for more information.Can some one please tell me if the servers are down?Thanks
18
0
7.1k
Sep ’15
HTTP 503 on init.sandbox.push.apple.com
I use Charles Proxy during development, and recently I've been seeing a lot of requests to init.sandbox.push.apple.com which results in HTTP 503. A quick ping says that this server does not exist. When this occurs, I also noticed that push notification for my app that I'm working on fails. The last time this occured, a quick update to a new iOS 13 version that was available at that time fixes it. However, this issue seems to be cropping up again with the latest iOS 13.3. Anyone else facing this same issue?As I am posting this message, I noticed another test device failing with HTTP 503 on health.apple.com aside to the above server. Thanks
1
0
1.2k
Dec ’19
Applepay merchant validation failing with error request failed with status code 417
I am implementing apple pay and the merchant validation is failing with error (error request failed with status code 417). I am using react js in the frontend and node js in backend, this is my code const httpsAgent = new https.Agent({ rejectUnauthorized: false, cert: fs.readFileSync( path.join(__dirname, ../../../certificates/merchant_id_prod.pem) ), key: fs.readFileSync( path.join(__dirname, ../../../certificates/merchant_id_prod.key) ), }); const data = { merchantIdentifier: merchantId, displayName: Check, initiative: web, initiativeContext: domain.com, }; const response = await axios.post(validationURL, data, { httpsAgent });
0
0
355
Jan ’25
Attempting to save CKQuerySubscription yields 503 error
I'm building a CloudKit app, and I'm trying to get a subscription working for the iOS app. Subscriptions work in the web app. This code gives me a Request failed with http status code 503. myContainerId is the container ID in CloudKit Dashboard. ttttlet predicate = NSPredicate(value: true) ttttlet subscription = CKQuerySubscription(recordType: Task, predicate: predicate, subscriptionID: ios-tasks, options: [ CKQuerySubscription.Options.firesOnRecordCreation, CKQuerySubscription.Options.firesOnRecordUpdate, CKQuerySubscription.Options.firesOnRecordDeletion]) ttttsubscription.zoneID = CKRecordZone.ID(zoneName: com.apple.coredata.cloudkit.zone, ownerName: CKCurrentUserDefaultName) ttttlet info = CKSubscription.NotificationInfo() ttttinfo.shouldSendContentAvailable = true ttttsubscription.notificationInfo = info tttt ttttlet aContainer = CKContainer(identifier: myContainerId) tttt ttttlet operation = CKModifySubscriptionsOperation(subscriptionsToSave: [subscri
2
0
831
Jul ’20
Reply to 503 Service Unavailable when calling Apple Search Ads API
Hello, I am also getting the same error SERVICE_UNAVAILABLE_ERROR while using Apple store connect API https://api.appstoreconnect.apple.com/v1/salesReports. Are you able to find any solution ? { errors: [ { id: d6404eb9-24b6-49be-83c3-3a15da1dfb41, status: 503, code: SERVICE_UNAVAILABLE_ERROR, title: This request can not be processed right now, detail: Reporter is currently unavailable. } ] }
Topic: App & System Services SubTopic: General Tags:
Feb ’23
POST https://idmsa.apple.com/appleauth/auth/signin returns 503
I use EAS (Expo) to build a mobile app. When I build for iOS, I need to supply my Apple credentials so that Expo can generate the necessary build credentials and validate them. For the last two days, I can't get past this authentication step: POST https://idmsa.apple.com/appleauth/auth/signin ⠦ Logging in...Error: Request failed with status code 503 I can't find anything online stating that this service is currently unavailable. Is there a problem? Any ETA on resolution?
0
0
116
Feb ’26
Sign in with apple REST api keep getting [Request failed with status code 400] error
I am implementing apple sign in on my website On my backend(Nodejs), I need to request an authentication token using https://appleid.apple.com/auth/token REST api. I used Axios and coded as following export const createSignWithAppleSecret = () => { const token = jwt.sign({}, signWithApplePrivateKey, { algorithm: 'ES256', expiresIn: '1h', audience: APPLE_DOMAIN, issuer: APPLE_TEAM_ID, subject: APPLE_SERVICE_ID, keyid: APPLE_KEY_ID, }); return token; }; export const getAppleToken = async (code: string) => axios.post( 'https://appleid.apple.com/auth/token', qs.stringify({ grant_type: 'authorization_code', code, client_secret: createSignWithAppleSecret(), client_id: APPLE_SERVICE_ID, redirect_uri: APPLE_REDIRECT_URI, }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, } ); But I am getting Reqest failed with status code 400 Error: Request failed with status code 400n at c
0
0
1.1k
Dec ’21
Reply to How to verify that Apple's CDN has picked up newer version of the apple-app-site-association file?
Thanks for the sysdiagnose pointer (this should be added to the documentation page). I found this: Service: applinks App ID: TeamId.bundle.id App Version: 510.0 App PI: { v = 0, t = 0x8, u = 0x8a4, db = 284B9176-578F-42D3-A1D7-9F82DA98D040, {length = 8, bytes = 0xa408000000000000} } Domain: mydomain.com User Approval: unspecified Site/Fmwk Approval: unspecified Flags: Last Checked: 2022-01-27 20:20:37 +0000 Next Check: 2022-01-27 23:55:10 +0000 Error: Error Domain=SWCErrorDomain Code=7 SWCERR00101 Bad HTTP Response: 503 Service Unavailable -- {status:503 Service Temporarily Unavailable} UserInfo={Line=274, Function=-[SWCDownloader URLSession:dataTask:didReceiveResponse:completionHandler:], NSDebugDescription=SWCERR00101 Bad HTTP Response: 503 Service Unavailable -- {status:503 Service Temporarily Unavailable}, UnderlyingError=Error Domain=HTTP Code=404 (null) UserInfo={Line=274, Function=-[SWCDownloader URLSess
Topic: App & System Services SubTopic: General Tags:
Jan ’22
HTTP error 503 on cdn.apple-mapkit.com
I am using apple maps with leaflet and mapkitmutant. The apple maps appear to be displayed correctly, but the browser console gets flooded with these error messages. 503 servie not available. Any ideas on how to fix or suppress the error messages? Could not read source map for https://cdn.apple-mapkit.com/mk/5.75.107/libs/mapkit.core.f63534.js: Unexpected 503 response from https://mw-ci1-mapkitjs.geo.apple.com/admin/source-maps/5.75.107/source-maps/libs/mapkit.core.f63534.js.map: getaddrinfo ENOTFOUND mw-ci1-mapkitjs.geo.apple.com
0
0
818
May ’23
CoreML encrypt exceptions in App Store
I have an app in the App Store that has been running fine. Starting yesterday it began throwing an exception during initialization in the App Store and during development: [0x000...***] during in one-time initialization function for my_model_name at /ViewController.swift:84 Thread 2: EXC_BREAKPOINT (code=1, =***) [coreml] Could not create persistent key blob for ----*** : error=Error Domain=com.apple.CoreML Code=8 Fetching decryption key from server failed. UserInfo=NSLocalizedDescription=Fetching decryption key from server failed., NSUnderlyingError=0x2822c6a60 Error Domain=CKErrorDomain Code=6 CKInternalErrorDomain: 2022 UserInfo=NSDebugDescription=CKInternalErrorDomain: 2022, RequestUID=----, NSLocalizedDescription=Request failed with http status code 503, CKErrorDescription=Request failed with http status code 503, CKRetryAfter=21, NSUnderlyingError=0x2822c6ac0 Error Domai
Replies
4
Boosts
0
Views
1.5k
Activity
Oct ’22
MKMapView fail load http 503
Hi all,map stop working suddenly in my app, with this errorHTTPStatus=503, NSErrorFailingURLStringKey=https://gspe11-ssl.ls.apple.com/tile?style=7&size=1&scale=2&v=3093&z=20&x=557993&y=383126&sid=1213967890529405942918252715328700239780&accessKey=1547122673_W4MZQJfmbf7rcgua_XwdrdKcoUajbuWNDHvFkuT4TBqaV8CE3bwoNhAzM6boiO5j%2F%2FV6bajmZL521Ct1wubkSYtLQ34nl8IHVjxYb1y1jGMltenfuSYmWBzLZKdu8RfhoOtn1UGbEWuGy1LN1azDWOrrQvdkdPSWF0GskhBtZ%2BuJnRIlgkvXlG4hsCO%2BtjDOVXRrQ4eu3NwWBBRT7Is Apple server problem?
Replies
0
Boosts
0
Views
594
Activity
Jan ’19
Getting HTTP 503 service unavailable while code signing
HiAs of 1:40 PM EST I am getting HTTP 503 error while code signing.Here is a gist of the errorXcode received an HTTP error while attempting to communicate with the portal:service unavailable (503)<https://developerservices2.apple.com/services/QH65B2/viewDeveloper.action?clientId=XABBG36SBA>Please see <https://developer.apple.com/support/system-status/> for more information.Can some one please tell me if the servers are down?Thanks
Replies
18
Boosts
0
Views
7.1k
Activity
Sep ’15
HTTP 503 on init.sandbox.push.apple.com
I use Charles Proxy during development, and recently I've been seeing a lot of requests to init.sandbox.push.apple.com which results in HTTP 503. A quick ping says that this server does not exist. When this occurs, I also noticed that push notification for my app that I'm working on fails. The last time this occured, a quick update to a new iOS 13 version that was available at that time fixes it. However, this issue seems to be cropping up again with the latest iOS 13.3. Anyone else facing this same issue?As I am posting this message, I noticed another test device failing with HTTP 503 on health.apple.com aside to the above server. Thanks
Replies
1
Boosts
0
Views
1.2k
Activity
Dec ’19
Applepay merchant validation failing with error request failed with status code 417
I am implementing apple pay and the merchant validation is failing with error (error request failed with status code 417). I am using react js in the frontend and node js in backend, this is my code const httpsAgent = new https.Agent({ rejectUnauthorized: false, cert: fs.readFileSync( path.join(__dirname, ../../../certificates/merchant_id_prod.pem) ), key: fs.readFileSync( path.join(__dirname, ../../../certificates/merchant_id_prod.key) ), }); const data = { merchantIdentifier: merchantId, displayName: Check, initiative: web, initiativeContext: domain.com, }; const response = await axios.post(validationURL, data, { httpsAgent });
Replies
0
Boosts
0
Views
355
Activity
Jan ’25
Attempting to save CKQuerySubscription yields 503 error
I'm building a CloudKit app, and I'm trying to get a subscription working for the iOS app. Subscriptions work in the web app. This code gives me a Request failed with http status code 503. myContainerId is the container ID in CloudKit Dashboard. ttttlet predicate = NSPredicate(value: true) ttttlet subscription = CKQuerySubscription(recordType: Task, predicate: predicate, subscriptionID: ios-tasks, options: [ CKQuerySubscription.Options.firesOnRecordCreation, CKQuerySubscription.Options.firesOnRecordUpdate, CKQuerySubscription.Options.firesOnRecordDeletion]) ttttsubscription.zoneID = CKRecordZone.ID(zoneName: com.apple.coredata.cloudkit.zone, ownerName: CKCurrentUserDefaultName) ttttlet info = CKSubscription.NotificationInfo() ttttinfo.shouldSendContentAvailable = true ttttsubscription.notificationInfo = info tttt ttttlet aContainer = CKContainer(identifier: myContainerId) tttt ttttlet operation = CKModifySubscriptionsOperation(subscriptionsToSave: [subscri
Replies
2
Boosts
0
Views
831
Activity
Jul ’20
Search Ads API 503 status
I'm trying to call the Search Ads API via cURL and I'm getting http 503 error code.curl --cert {FILE}.p12 --pass {PASS} https://api.searchads.apple.com/v1/aclsIs the service working? Did someone try?
Replies
5
Boosts
0
Views
1k
Activity
Oct ’16
Reply to 503 Service Unavailable when calling Apple Search Ads API
Hello, I am also getting the same error SERVICE_UNAVAILABLE_ERROR while using Apple store connect API https://api.appstoreconnect.apple.com/v1/salesReports. Are you able to find any solution ? { errors: [ { id: d6404eb9-24b6-49be-83c3-3a15da1dfb41, status: 503, code: SERVICE_UNAVAILABLE_ERROR, title: This request can not be processed right now, detail: Reporter is currently unavailable. } ] }
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’23
Error Fetching App Record : App record request failed with error: "Unexpected Status Code"
Still can't publish apps. Differents errors like : App record request failed with error: Unexpected Status Code. What issues ? Thanks
Replies
22
Boosts
0
Views
10k
Activity
May ’22
Error activating "iCloud Sync" (3rd. party apps)
When i try to enable iCloud Sync, for example, using 1Password.app i have an error saying The Operation couldn't be completed. (CKErrorDomain error 7.) or Request failed with http status code 503. I have this issue with all the apps i have installed with iCloud Sync feature on any device with iOS 9.3 beta 4.
Replies
2
Boosts
0
Views
1.2k
Activity
Feb ’16
POST https://idmsa.apple.com/appleauth/auth/signin returns 503
I use EAS (Expo) to build a mobile app. When I build for iOS, I need to supply my Apple credentials so that Expo can generate the necessary build credentials and validate them. For the last two days, I can't get past this authentication step: POST https://idmsa.apple.com/appleauth/auth/signin ⠦ Logging in...Error: Request failed with status code 503 I can't find anything online stating that this service is currently unavailable. Is there a problem? Any ETA on resolution?
Replies
0
Boosts
0
Views
116
Activity
Feb ’26
Sign in with apple REST api keep getting [Request failed with status code 400] error
I am implementing apple sign in on my website On my backend(Nodejs), I need to request an authentication token using https://appleid.apple.com/auth/token REST api. I used Axios and coded as following export const createSignWithAppleSecret = () => { const token = jwt.sign({}, signWithApplePrivateKey, { algorithm: 'ES256', expiresIn: '1h', audience: APPLE_DOMAIN, issuer: APPLE_TEAM_ID, subject: APPLE_SERVICE_ID, keyid: APPLE_KEY_ID, }); return token; }; export const getAppleToken = async (code: string) => axios.post( 'https://appleid.apple.com/auth/token', qs.stringify({ grant_type: 'authorization_code', code, client_secret: createSignWithAppleSecret(), client_id: APPLE_SERVICE_ID, redirect_uri: APPLE_REDIRECT_URI, }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, } ); But I am getting Reqest failed with status code 400 Error: Request failed with status code 400n at c
Replies
0
Boosts
0
Views
1.1k
Activity
Dec ’21
Reply to How to verify that Apple's CDN has picked up newer version of the apple-app-site-association file?
Thanks for the sysdiagnose pointer (this should be added to the documentation page). I found this: Service: applinks App ID: TeamId.bundle.id App Version: 510.0 App PI: { v = 0, t = 0x8, u = 0x8a4, db = 284B9176-578F-42D3-A1D7-9F82DA98D040, {length = 8, bytes = 0xa408000000000000} } Domain: mydomain.com User Approval: unspecified Site/Fmwk Approval: unspecified Flags: Last Checked: 2022-01-27 20:20:37 +0000 Next Check: 2022-01-27 23:55:10 +0000 Error: Error Domain=SWCErrorDomain Code=7 SWCERR00101 Bad HTTP Response: 503 Service Unavailable -- {status:503 Service Temporarily Unavailable} UserInfo={Line=274, Function=-[SWCDownloader URLSession:dataTask:didReceiveResponse:completionHandler:], NSDebugDescription=SWCERR00101 Bad HTTP Response: 503 Service Unavailable -- {status:503 Service Temporarily Unavailable}, UnderlyingError=Error Domain=HTTP Code=404 (null) UserInfo={Line=274, Function=-[SWCDownloader URLSess
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’22
HTTP error 503 on cdn.apple-mapkit.com
I am using apple maps with leaflet and mapkitmutant. The apple maps appear to be displayed correctly, but the browser console gets flooded with these error messages. 503 servie not available. Any ideas on how to fix or suppress the error messages? Could not read source map for https://cdn.apple-mapkit.com/mk/5.75.107/libs/mapkit.core.f63534.js: Unexpected 503 response from https://mw-ci1-mapkitjs.geo.apple.com/admin/source-maps/5.75.107/source-maps/libs/mapkit.core.f63534.js.map: getaddrinfo ENOTFOUND mw-ci1-mapkitjs.geo.apple.com
Replies
0
Boosts
0
Views
818
Activity
May ’23
Reply to ppq.apple.com seems to be down right now?
According tohttps://developer.apple.com/system-status/everything is up.If I check with Chrome Developer Tools, I see that I Get HTTP 503 on both the page and the favicon.From Chrome on Mac, I get 503:s but on Chrome on Windows I get Invalid Certificate. Interesting.
Replies
Boosts
Views
Activity
Sep ’18