Search results for

“Request failed with http status code 503”

200,989 results found

Post

Replies

Boosts

Views

Activity

Reply to Weatherkit Rest API 500 errors this morning
I didn't look at why my requests were failing (error code/ timing out) - but yes. For about an hour this morning I don't seem to have gotten many 200 responses from the API. The API remains unreliable. It cannot be used for production without a backup weather source in place. It doesn't help that we don't get any information from Apple other than number of requests (response time? return code? hello?). And that WeatherKit always just shows Green as its status.
Topic: App & System Services SubTopic: General Tags:
Mar ’23
Reply to dateSet forecastDaily always returning 404 for past 12 hours has been working for months
I'm seeing this when fetching dataSets: forecastHourly,forecastNextHour in the REST API. I've been passing hourlyEnd in the form 2023-03-05T09:35:08.843Z and it's worked fine until now. But I'm now getting Request failed with status code 404. If I remove hourlyEnd completely, the request returns fine, but I then only get 24 hours of data. Any ideas?
Topic: App & System Services SubTopic: General Tags:
Feb ’23
Request failed with Error Domain=NSPOSIXErrorDomain Code=28 "No space left on device"
Lately numerous network requests made from our iOS device fail with the following error: Error Domain=NSPOSIXErrorDomain Code=28 No space left on device UserInfo={_NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask CF70E0F0-40BB-4796-B15B-3B4CCB483EE1.3, _kCFStreamErrorDomainKey=1, _NSURLErrorRelatedURLSessionTaskErrorKey=( LocalDataTask CF70E0F0-40BB-4796-B15B-3B4CCB483EE1.3 ), _kCFStreamErrorCodeKey=28} The message implies the error has to do with available disk/memory space on the device. However, after checking both there is no link to be found since there is plenty of space available. Also, the error occurs on multiple devices, all running iOS 14.4 or higher. Is there information available regarding error code 28 and what could be the culprit on iOS devices? Even better; how can this error be prevented? Thanks in advance! Kind Regards, Julian
8
0
16k
Apr ’21
Bluetooth peripheral failed to connect with status=702
Hello, I'm troubleshooting why my custom Bluetooth peripheral won't connect to my iPad. My Bluetooth peripheral is named 0471. I installed the Bluetooth profile and exported the system diagnostic logs from the iPad to troubleshoot the connection. Here are the relevant system logs from my iPad. 0471 connecting: default 2024-08-05 13:28:53.664196 -0500 bluetoothd Device connecting - {cbuuid: 0BB0FBE0-F708-23DD-B310-E487518668BE, devicename: Reader 0471, result: 0, adv-addr: 4C:5B:B3:85:CD:D6-Public, resolved-addr: } 0471 failure to connect: default 2024-08-05 13:28:53.987319 -0500 bluetoothd handleConnectionCompleteCallback address=Public 4C:5B:B3:85:CD:D6 handle=0x0 status=702 connectionIsActive=0, wakeupEvent=0 default 2024-08-05 13:28:59.673271 -0500 bluetoothd handleConnectionCompleteCallback address=Public 4C:5B:B3:85:CD:D6 handle=0x0 status=702 connectionIsActive=0, wakeupEvent=0 default 2024-08-05 13:29:08.684653 -0500 bluetoothd handleConnectionCompleteCallback address=Public 4C:5B:B3:
4
0
839
Aug ’24
Adding new Sandbox user fails with HTTP 500
Hi,I'm trying to add a new Sandbox User in Itunes Connect > Users and Access. I filled all the requiered fields but when I click invite, I get the error An error has occurred. Try again later.By inspecting the http request, I see that the POST to https://appstoreconnect.apple.com/iris/v1/sandboxTesters fails with{ errors: [{ status: 500, code: UNEXPECTED_ERROR, title: An unexpected error occurred., detail: An unexpected error occurred on the server side. If this issue continues, contact us at https://developer.apple.com/contact/. }] }any ideas what could be wrong?cheers
1
0
1.4k
Sep ’19
Receipt status code has prefix 210
Hi,I have set up IAP in my service and has been working properly until today.A few users complained that they failed to restore purchase.--The workflow is as the following:1. fetch receipt from Apple when enter my payment view controller .2. encode the receipt and send it to my server when user click on `restore purchase`3. server decoded the receipt and call Apple's receipt verify api to validate the receipt, the payload format follows the format in documentation4. Apple send back a status code in the response with prefix 210, which is apparently refers to invalid receipt.I've read https://developer.apple.com/library/archive/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104-SW2and still have no idea why is this happening. It works fine in sandbox environment and works for most of users who purchased and tried to restore purchase.Is there anything I am missing or misunderstanding ? Thank You!!
0
0
609
Jan ’19
Reply to HTTP operation not permitted
What platform are you targeting? If you run your app on a real device, does it fail in the same way? What API are you using to issue this HTTP request? I’m presuming URLSession, but: Is it a background session? Or a standard session? Are you create a data task? Or a download task? If you put this code into your app, does it work? do { print(will run task) let url = URL(string: https://example.com)! let request = URLRequest(url: url, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 60.0) let (data, response) = try await URLSession.shared.data(for: request) let httpResponse = response as! HTTPURLResponse print(did run task, status: (httpResponse.statusCode), bytes: (data.count)) } catch let error as NSError { print(did not run task, error: (error.domain) / (error.code)) } Then change the URL to that of your server. Does that work? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo +
Feb ’25
Verification failed with status INVALID_APP_IDENTIFIER
Hi, We are trying to verify transaction IDs using the App Store Server Library for Python. We have been able to successfully send a test notification, but then when trying to get transaction information for a specific transaction ID we are receiving the InvalidAppIdentifierError (error code: 4000002). We have verified that the bundle_id is correct and matches what we see in App Store Connect, and the bundle_id seems to be valid and work when we sent a test notification. We have also tried setting the bundle_id to be equal to our ., which is the format for the application-identifier in our TestFlight Build Metadata, but we still receive the same error when doing so. We would greatly appreciate any help or advice on how to resolve this, and please let me know if any more information is needed to help us. import os from appstoreserverlibrary.api_client import AppStoreServerAPIClient, APIException from appstoreserverlibrary.models.Environment import Environment from appstoreserverlibrary.signed_data_veri
3
0
2.7k
Jan ’24
Reply to Sign In by Apple on Firebase - 503 Service Temporarily Unavailable
Hi @fmoliv, You wrote: What could be causing a persistent 503 Server Temporarily Not Available error on the /auth/authorize endpoint when all client-side configurations appear to be correct? This is most likely an issue with Firebase's integration and not with Sign in with Apple or the Apple Account servers. Then, you wrote: What is the formal process for opening a technical support ticket (TSI) directly with Apple Developer Support for an issue like this? The form to submit a code-level request ticket is below, although, the DTS team is available to answer questions on the forums directly: Code-level support https://developer.apple.com/support/technical/ Cheers, Paris X Pinkney |  WWDR | DTS Engineer
3d
Persistent 503/500 errors with Apple Search Ads API
Hi Apple Developer Community, I'm experiencing persistent issues with the Apple Search Ads API since today morning (August 16, 2025). My application keeps getting Service Unavailable errors when trying to connect to the API endpoints. Error Details: Error Message: Service Unavailable HTTP Status: 503/500 API Endpoint: https://api.searchads.apple.com/api/v5/* Frequency: Consistent failures since August 16, 2025 What I've Tried: Verified API credentials and certificates are valid Tested multiple API endpoints Checked network connectivity The API was working fine until yesterday, and no changes were made to our implementation. Any insights or updates from the community would be greatly appreciated. Thanks in advance for your help!
5
0
1.3k
Aug ’25
Request Timed out with Code=-1001_kCFStreamErrorCodeKey=-2102
Sometimes network request from my app gets stuck. And I get following error after a while,failed with error: Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={NSUnderlyingError=0x1390937f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 (null) UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https:/Any request I make after this, The same sent request is sent out and it fails with same error. So, no new request goes out. This happens very rarely, but it does happen.I am using NSURLSessionDataTask:dataTaskWithRequest:completionHandler to make a network calls.
12
0
39k
Oct ’15
Reply to App Store Connect, Subscription prices
Same issue here. @Apple, not sure if this will help, checking the dev console, the API call that fails is: GET: https://appstoreconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/1449819058/pricing/intervals Status code: 403 (Forbidden)
Replies
Boosts
Views
Activity
Sep ’20
Reply to Weatherkit Rest API 500 errors this morning
I didn't look at why my requests were failing (error code/ timing out) - but yes. For about an hour this morning I don't seem to have gotten many 200 responses from the API. The API remains unreliable. It cannot be used for production without a backup weather source in place. It doesn't help that we don't get any information from Apple other than number of requests (response time? return code? hello?). And that WeatherKit always just shows Green as its status.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to dateSet forecastDaily always returning 404 for past 12 hours has been working for months
I'm seeing this when fetching dataSets: forecastHourly,forecastNextHour in the REST API. I've been passing hourlyEnd in the form 2023-03-05T09:35:08.843Z and it's worked fine until now. But I'm now getting Request failed with status code 404. If I remove hourlyEnd completely, the request returns fine, but I then only get 24 hours of data. Any ideas?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’23
Request failed with Error Domain=NSPOSIXErrorDomain Code=28 "No space left on device"
Lately numerous network requests made from our iOS device fail with the following error: Error Domain=NSPOSIXErrorDomain Code=28 No space left on device UserInfo={_NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask CF70E0F0-40BB-4796-B15B-3B4CCB483EE1.3, _kCFStreamErrorDomainKey=1, _NSURLErrorRelatedURLSessionTaskErrorKey=( LocalDataTask CF70E0F0-40BB-4796-B15B-3B4CCB483EE1.3 ), _kCFStreamErrorCodeKey=28} The message implies the error has to do with available disk/memory space on the device. However, after checking both there is no link to be found since there is plenty of space available. Also, the error occurs on multiple devices, all running iOS 14.4 or higher. Is there information available regarding error code 28 and what could be the culprit on iOS devices? Even better; how can this error be prevented? Thanks in advance! Kind Regards, Julian
Replies
8
Boosts
0
Views
16k
Activity
Apr ’21
Reply to buy.itunes.apple.com/verifyReceipt exception, time out
And as a notice for others (also added that to my feedback filing), we're also getting an increased amount of service unavailable (HTTP 503) since friday, February 7th, again
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Feb ’20
Reply to MapKit Snapshot API returning blank dark blue images — started today
We're having the same issue and I'm not sure what support we need to reach out to, since I'm not sure they know anything is wrong since the requests return an HTTP 200 status code. Please update this if you find any resolution.
Replies
Boosts
Views
Activity
Mar ’26
Bluetooth peripheral failed to connect with status=702
Hello, I'm troubleshooting why my custom Bluetooth peripheral won't connect to my iPad. My Bluetooth peripheral is named 0471. I installed the Bluetooth profile and exported the system diagnostic logs from the iPad to troubleshoot the connection. Here are the relevant system logs from my iPad. 0471 connecting: default 2024-08-05 13:28:53.664196 -0500 bluetoothd Device connecting - {cbuuid: 0BB0FBE0-F708-23DD-B310-E487518668BE, devicename: Reader 0471, result: 0, adv-addr: 4C:5B:B3:85:CD:D6-Public, resolved-addr: } 0471 failure to connect: default 2024-08-05 13:28:53.987319 -0500 bluetoothd handleConnectionCompleteCallback address=Public 4C:5B:B3:85:CD:D6 handle=0x0 status=702 connectionIsActive=0, wakeupEvent=0 default 2024-08-05 13:28:59.673271 -0500 bluetoothd handleConnectionCompleteCallback address=Public 4C:5B:B3:85:CD:D6 handle=0x0 status=702 connectionIsActive=0, wakeupEvent=0 default 2024-08-05 13:29:08.684653 -0500 bluetoothd handleConnectionCompleteCallback address=Public 4C:5B:B3:
Replies
4
Boosts
0
Views
839
Activity
Aug ’24
Adding new Sandbox user fails with HTTP 500
Hi,I'm trying to add a new Sandbox User in Itunes Connect > Users and Access. I filled all the requiered fields but when I click invite, I get the error An error has occurred. Try again later.By inspecting the http request, I see that the POST to https://appstoreconnect.apple.com/iris/v1/sandboxTesters fails with{ errors: [{ status: 500, code: UNEXPECTED_ERROR, title: An unexpected error occurred., detail: An unexpected error occurred on the server side. If this issue continues, contact us at https://developer.apple.com/contact/. }] }any ideas what could be wrong?cheers
Replies
1
Boosts
0
Views
1.4k
Activity
Sep ’19
Reply to Notarizing app taken very long
The notary service status indicator is here: https://developer.apple.com/system-status/You can report issues via https://bugreport.apple.com or opening a support ticket. Please include the request UUID if your question is about a particular upload.
Replies
Boosts
Views
Activity
Jan ’19
Receipt status code has prefix 210
Hi,I have set up IAP in my service and has been working properly until today.A few users complained that they failed to restore purchase.--The workflow is as the following:1. fetch receipt from Apple when enter my payment view controller .2. encode the receipt and send it to my server when user click on `restore purchase`3. server decoded the receipt and call Apple's receipt verify api to validate the receipt, the payload format follows the format in documentation4. Apple send back a status code in the response with prefix 210, which is apparently refers to invalid receipt.I've read https://developer.apple.com/library/archive/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html#//apple_ref/doc/uid/TP40010573-CH104-SW2and still have no idea why is this happening. It works fine in sandbox environment and works for most of users who purchased and tried to restore purchase.Is there anything I am missing or misunderstanding ? Thank You!!
Replies
0
Boosts
0
Views
609
Activity
Jan ’19
Reply to HTTP operation not permitted
What platform are you targeting? If you run your app on a real device, does it fail in the same way? What API are you using to issue this HTTP request? I’m presuming URLSession, but: Is it a background session? Or a standard session? Are you create a data task? Or a download task? If you put this code into your app, does it work? do { print(will run task) let url = URL(string: https://example.com)! let request = URLRequest(url: url, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 60.0) let (data, response) = try await URLSession.shared.data(for: request) let httpResponse = response as! HTTPURLResponse print(did run task, status: (httpResponse.statusCode), bytes: (data.count)) } catch let error as NSError { print(did not run task, error: (error.domain) / (error.code)) } Then change the URL to that of your server. Does that work? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo +
Replies
Boosts
Views
Activity
Feb ’25
Verification failed with status INVALID_APP_IDENTIFIER
Hi, We are trying to verify transaction IDs using the App Store Server Library for Python. We have been able to successfully send a test notification, but then when trying to get transaction information for a specific transaction ID we are receiving the InvalidAppIdentifierError (error code: 4000002). We have verified that the bundle_id is correct and matches what we see in App Store Connect, and the bundle_id seems to be valid and work when we sent a test notification. We have also tried setting the bundle_id to be equal to our ., which is the format for the application-identifier in our TestFlight Build Metadata, but we still receive the same error when doing so. We would greatly appreciate any help or advice on how to resolve this, and please let me know if any more information is needed to help us. import os from appstoreserverlibrary.api_client import AppStoreServerAPIClient, APIException from appstoreserverlibrary.models.Environment import Environment from appstoreserverlibrary.signed_data_veri
Replies
3
Boosts
0
Views
2.7k
Activity
Jan ’24
Reply to Sign In by Apple on Firebase - 503 Service Temporarily Unavailable
Hi @fmoliv, You wrote: What could be causing a persistent 503 Server Temporarily Not Available error on the /auth/authorize endpoint when all client-side configurations appear to be correct? This is most likely an issue with Firebase's integration and not with Sign in with Apple or the Apple Account servers. Then, you wrote: What is the formal process for opening a technical support ticket (TSI) directly with Apple Developer Support for an issue like this? The form to submit a code-level request ticket is below, although, the DTS team is available to answer questions on the forums directly: Code-level support https://developer.apple.com/support/technical/ Cheers, Paris X Pinkney |  WWDR | DTS Engineer
Replies
Boosts
Views
Activity
3d
Persistent 503/500 errors with Apple Search Ads API
Hi Apple Developer Community, I'm experiencing persistent issues with the Apple Search Ads API since today morning (August 16, 2025). My application keeps getting Service Unavailable errors when trying to connect to the API endpoints. Error Details: Error Message: Service Unavailable HTTP Status: 503/500 API Endpoint: https://api.searchads.apple.com/api/v5/* Frequency: Consistent failures since August 16, 2025 What I've Tried: Verified API credentials and certificates are valid Tested multiple API endpoints Checked network connectivity The API was working fine until yesterday, and no changes were made to our implementation. Any insights or updates from the community would be greatly appreciated. Thanks in advance for your help!
Replies
5
Boosts
0
Views
1.3k
Activity
Aug ’25
Request Timed out with Code=-1001_kCFStreamErrorCodeKey=-2102
Sometimes network request from my app gets stuck. And I get following error after a while,failed with error: Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={NSUnderlyingError=0x1390937f0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 (null) UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https:/Any request I make after this, The same sent request is sent out and it fails with same error. So, no new request goes out. This happens very rarely, but it does happen.I am using NSURLSessionDataTask:dataTaskWithRequest:completionHandler to make a network calls.
Replies
12
Boosts
0
Views
39k
Activity
Oct ’15