Search results for

“Request failed with http status code 503”

200,986 results found

Post

Replies

Boosts

Views

Activity

I am not getting any replies to my request for status.
I submitted an App for review on June 18, received a response on June 21, as Rejected, Reason other. But the message text said there maybe a problem with your account or app, or there maybe no problems, and I have to wait 7 days and contact review team for status. I sent status requests several times, but got no response, except a a thank you e-mail for inquiring. My confusion is why my app was rejected while the review to best of my knowledge hasn't even started? Is Apple short on staffing? An android version of the same App took just 24 hours to get posted.
2
0
675
Jul ’22
Could not download and install OS X 10.11 Documentation. Failed with HTTP status 404: not found
I'm trying for days now to download the documentation for OS X, iOS etc. on a new Mac. All I get is:Could not download and install xxx Documentation. Failed with HTTP status 404: not found.So I tried to copy those 8 GBs from another Mac and it alwaus failed because some content could not be read.Does anyohe have a suggestion what I can do now? Thanks in advance.Xcode Version 7.1.1 (7B1005), OS 10.11.1
0
0
305
Dec ’15
Request for Update on App Review Status
I am writing to formally inquire about the status of my app update (App ID: 1598115292), which has been in the “Waiting for Review” stage since February 12. This review period is longer than I have previously experienced, and I would greatly appreciate any clarification regarding the delay. I had also contacted support earlier regarding this matter but have not yet received a response. I kindly request that you provide an estimated timeframe for when the update is expected to be reviewed and made available on the App Store.
3
0
133
Mar ’26
In-App Purchase error Invalid status code
On March 8, multiple users reported invalid status codes when using our app to make payments. By night, it was back to normal. Has anyone encountered the same problem? Error Domain=SKErrorDomain Code=0 发生未知错误 UserInfo={NSLocalizedDescription=发生未知错误, NSUnderlyingError=0x283f71740 {Error Domain=ASDErrorDomain Code=500 Unhandled exception UserInfo={NSUnderlyingError=0x283f71d10 {Error Domain=AMSErrorDomain Code=100 Authentication Failed UserInfo={NSLocalizedDescription=Authentication Failed, NSMultipleUnderlyingErrorsKey=( Error Domain=AMSErrorDomain Code=301 Invalid Status Code UserInfo={NSLocalizedFailureReason=The response has an invalid status code, AMSURL=https://auth.itunes.apple.com/auth/v1/native, AMSStatusCode=403, NSLocalizedDescription=Invalid Status Code}, Error Domain=AMSErrorDomain Code=301 Invalid Status Code UserInfo={NSLocalizedFailureR
0
0
919
Mar ’24
Reply to AVAssetResourceLoaderDelegate and error handling
We were seeing some rare cases of sudden drift on live streams, where content would appear to be playing normally, and then we would suddenly see the audio and video be minutes apart from each other. This appeared to be related to HTTP 503 and 304 responses from the CDN on .m3u8 playlists. This issue didn’t happen on a brand new project, using an AVPlayer without a resource loader delegate, so we suspected that our own handling of these responses in our own AVAssetResourceLoaderDelegate could be the cause. We changed our code to the following, to handle the case of the 503s and other codes within the 400s-500s ranges. This did seem to solve the issue, but we weren't 100% certain if this was the right approach. Based on your answer, it sounds like we should just pass the HTTP code in directly instead of the code: NSURLErrorBadServerResponse. loadingRequest.finishLoading( with: NSError( domain: NSURLErrorDomain, code: NSURLErrorBad
Topic: Streaming SubTopic:
HTTP Live Streaming Q&A
1d
Submitted critical alert entitlement request - no status?
I have submitted my critical alert entitlement request (https://developer.apple.com/contact/request/notifications-critical-alerts-entitlement/) on January 29 and still no answer besides the standard autoreply with the acknowledgment that my application was received.Apple support suggested seeking assistance on this forum,does anyone have an idea how long it will take to receive an granted entitlement or how to see the status of the request?
1
0
585
Mar ’20
400 response status code on keywords
Hello. Got 400 error on some compaignIDs while trying to POST on https://api.searchads.apple.com/api/v4/reports/campaigns/compaignID/keywords the error message: Request error with status code 400 text message: {data:null,pagination:null,error:{errors:[{messageCode:INVALID_INPUT,message:APPSTORE_PRODUCT_PAGES_BROWSE CAMPAIGN DOES NOT CONTAIN KEYWORD,field:}]}} Cant find any discussions about it. Can sombd explain - what is that? Thankyou.
0
0
900
Feb ’23
Swift 5: Send HTTP POST Request with XML code to API
Hi Forums I have been trying to work with this snippet but seems like I can't get it just right. I have added an explain here below as I can't post an image of what I'm trying to achieve. This should send the XML commands to my server API and initiate an Environment called Animals.hwe to be shown on a videowall. note: the xmlcommand URL is changed because of the http not being allowed. My test code... import UIKit import SwiftUI let session = URLSession(configuration: .default) let url = URL(string: http........://192.168.0.196:8000/xmlcommand) var request = URLRequest(url: url) request.httpMethod = POST request.httpBody = type=open>environments/Animals.hwea1.data(using: .utf8) let task = session.dataTask(with: request) { data, response, error in // do something with the result } task.resume() // <- otherwise your network request won't be started With Rested App on Mac I can make the POST work fine with these settings: http. ..... ://192.16
5
0
5.9k
Oct ’20
On iPhone App Restart: File Descriptors Exhausted & Failed HTTP Requests
BEHAVIOR App runs great on first install. If I close the app and reopen, many times the network requests fail, most likely due to too many open files. If I restart the app 4 times, everything seems to load fine (until next time). A fresh install works as well. APP Flutter app. Utilizes flutter map package, which displays map tile layers. Otherwise, pulls JSON/API data every so often. Heavy/frequent pulling of tile images (typically ~1000 during a single pan). PROBLEM DEVICES: Issues ONLY happens on physical iPhones (tested on 11 and 15). iOS simulators work fine. Androids work fine On the Androids or simulator, I can pan the map and pull 3000+ tile images, and overlay data, with no issues. TESTING I have inspected disposal methods, closing network clients, even tried exit(0) in various places. Have tried app lifecycle widgets on paused, detached, resumed. Nothing changes the behavior. At one point, I thought I had the issue fixed when I changed my DNS from 1.1.1.1 to automatic, since all the
2
0
602
Sep ’24
Failed to install Requested application
I really dont know what that means i got a output which gave me Failed to install the requested application Code: 22 Failure Reason: The bundle identifier of the application could not be determined. I dont know if this is the only thing holding me back right now but its the only thing stopping from me seeing my project in the simulator Any help would be great THANKS IN ADVANCED
0
0
701
Apr ’22
Condensing HTTP request functions
Hi, For HTTP requests, I have the following function: func createAccount(account: Account, completion: @escaping (Response) -> Void) { guard let url = URL(string: http://localhost:4300/account) else { return } var request = URLRequest(url: url) request.httpMethod = POST request.setValue(application/json, forHTTPHeaderField: Content-Type) guard let encoded = try? JSONEncoder().encode(account) else { print(Failed to encode request) return } request.httpBody = encoded URLSession.shared.dataTask(with: request) { (data, response, error) in guard let data = data else { return } do { let resData = try JSONDecoder().decode(Response, from: data) DispatchQueue.main.async { completion(resData) } } catch let jsonError as NSError { print(JSON decode failed: (jsonError)) } }.resume() } Because various HTTP requests use different body structs and response structs, I have a HTTP request function for each individual
0
0
466
Aug ’24
Reply to Are watchOS 6.1 Beta and Xcode 11.1 GM not compatible?
Found the following in the Console ... maybe Apple has not uploaded the symbols yet?DVTDownloadable: Download Failed. Downloadable: https:/devimages-cdn.apple.com/downloads/xcode/dsc/Watch5_2_17S5054e.dmg. Error Domain=DataWritingACSURLSessionDelegate Code=1 Failed with HTTP status 403: forbidden UserInfo={NSLocalizedDescription=Failed with HTTP status 403: forbidden, NSHTTPURLResponse=<NSHTTPURLResponse: 0x7fb37aed5eb0> { URL: https://devimages-cdn.apple.com/downloads/xcode/dsc/Watch5_2_17S5054e.dmg } { Status Code: 403, Headers { Access-Control-Allow-Origin = ( * ); Age = ( 1 ); Content-Type = ( application/xml ); Date = ( Wed, 25 Sep 2019 01:23:05 GMT ); Server = ( ATS/8.0.5 ); Via = ( https/1.1 usrtv2-edge-lx-002.ts.apple.com (ApacheTrafficServer/8.0.5), https/1.1 usrtv2-edge-bx-008.ts.apple.com (ApacheTrafficServer/8.0.5) ); cdnuuid = ( 4699d613-767a-4145-ac42-4df3f8e5cf65-8
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’19
Checking the status of Endpoint Securty entitlement request
Guys I'm the account holder of my company and we are working on a new EPP solution. Approx two months go I requested an Endoint Security entitlement so we can develop our product and then requested it again about a month ago. Is there a way to see what is the status of the request and whether this time frame is indeed the one we should expect? Thanks a lot!
2
0
1k
Jul ’23
Reply to MusicKit Dev Token Refresh
Hi, experiencing this issue when the bundle ID is created and configured. My app's identifier on the developer website matches the bundle ID in Xcode. When my code makes any request to the Apple Music catalog, it still throws this error: Media API Token Service responded with status code: Not Found (404). This suggests that was likely not registered as a valid client identifier. Failed retrieving tokens for MusicDataRequest.Context(url: https://api.music.apple.com/v1/storefronts/nz). Error = .developerTokenRequestFailed. Is there any way to resolve this?
Topic: Media Technologies SubTopic: General Tags:
Oct ’23
I am not getting any replies to my request for status.
I submitted an App for review on June 18, received a response on June 21, as Rejected, Reason other. But the message text said there maybe a problem with your account or app, or there maybe no problems, and I have to wait 7 days and contact review team for status. I sent status requests several times, but got no response, except a a thank you e-mail for inquiring. My confusion is why my app was rejected while the review to best of my knowledge hasn't even started? Is Apple short on staffing? An android version of the same App took just 24 hours to get posted.
Replies
2
Boosts
0
Views
675
Activity
Jul ’22
Could not download and install OS X 10.11 Documentation. Failed with HTTP status 404: not found
I'm trying for days now to download the documentation for OS X, iOS etc. on a new Mac. All I get is:Could not download and install xxx Documentation. Failed with HTTP status 404: not found.So I tried to copy those 8 GBs from another Mac and it alwaus failed because some content could not be read.Does anyohe have a suggestion what I can do now? Thanks in advance.Xcode Version 7.1.1 (7B1005), OS 10.11.1
Replies
0
Boosts
0
Views
305
Activity
Dec ’15
Request for Update on App Review Status
I am writing to formally inquire about the status of my app update (App ID: 1598115292), which has been in the “Waiting for Review” stage since February 12. This review period is longer than I have previously experienced, and I would greatly appreciate any clarification regarding the delay. I had also contacted support earlier regarding this matter but have not yet received a response. I kindly request that you provide an estimated timeframe for when the update is expected to be reviewed and made available on the App Store.
Replies
3
Boosts
0
Views
133
Activity
Mar ’26
In-App Purchase error Invalid status code
On March 8, multiple users reported invalid status codes when using our app to make payments. By night, it was back to normal. Has anyone encountered the same problem? Error Domain=SKErrorDomain Code=0 发生未知错误 UserInfo={NSLocalizedDescription=发生未知错误, NSUnderlyingError=0x283f71740 {Error Domain=ASDErrorDomain Code=500 Unhandled exception UserInfo={NSUnderlyingError=0x283f71d10 {Error Domain=AMSErrorDomain Code=100 Authentication Failed UserInfo={NSLocalizedDescription=Authentication Failed, NSMultipleUnderlyingErrorsKey=( Error Domain=AMSErrorDomain Code=301 Invalid Status Code UserInfo={NSLocalizedFailureReason=The response has an invalid status code, AMSURL=https://auth.itunes.apple.com/auth/v1/native, AMSStatusCode=403, NSLocalizedDescription=Invalid Status Code}, Error Domain=AMSErrorDomain Code=301 Invalid Status Code UserInfo={NSLocalizedFailureR
Replies
0
Boosts
0
Views
919
Activity
Mar ’24
Reply to "cannot connect to itunes store" in sandbox since this morning
joelbrewer01, unfortunately no!I am now (withouth having changed my code) able to get the product list again but IAP purchases are still failing!Strangely, everything is green/OK on Apple services status pages:https://developer.apple.com/system-status/https://www.apple.com/support/systemstatus/
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Dec ’17
Reply to AVAssetResourceLoaderDelegate and error handling
We were seeing some rare cases of sudden drift on live streams, where content would appear to be playing normally, and then we would suddenly see the audio and video be minutes apart from each other. This appeared to be related to HTTP 503 and 304 responses from the CDN on .m3u8 playlists. This issue didn’t happen on a brand new project, using an AVPlayer without a resource loader delegate, so we suspected that our own handling of these responses in our own AVAssetResourceLoaderDelegate could be the cause. We changed our code to the following, to handle the case of the 503s and other codes within the 400s-500s ranges. This did seem to solve the issue, but we weren't 100% certain if this was the right approach. Based on your answer, it sounds like we should just pass the HTTP code in directly instead of the code: NSURLErrorBadServerResponse. loadingRequest.finishLoading( with: NSError( domain: NSURLErrorDomain, code: NSURLErrorBad
Topic: Streaming SubTopic:
HTTP Live Streaming Q&A
Replies
Boosts
Views
Activity
1d
Submitted critical alert entitlement request - no status?
I have submitted my critical alert entitlement request (https://developer.apple.com/contact/request/notifications-critical-alerts-entitlement/) on January 29 and still no answer besides the standard autoreply with the acknowledgment that my application was received.Apple support suggested seeking assistance on this forum,does anyone have an idea how long it will take to receive an granted entitlement or how to see the status of the request?
Replies
1
Boosts
0
Views
585
Activity
Mar ’20
400 response status code on keywords
Hello. Got 400 error on some compaignIDs while trying to POST on https://api.searchads.apple.com/api/v4/reports/campaigns/compaignID/keywords the error message: Request error with status code 400 text message: {data:null,pagination:null,error:{errors:[{messageCode:INVALID_INPUT,message:APPSTORE_PRODUCT_PAGES_BROWSE CAMPAIGN DOES NOT CONTAIN KEYWORD,field:}]}} Cant find any discussions about it. Can sombd explain - what is that? Thankyou.
Replies
0
Boosts
0
Views
900
Activity
Feb ’23
Swift 5: Send HTTP POST Request with XML code to API
Hi Forums I have been trying to work with this snippet but seems like I can't get it just right. I have added an explain here below as I can't post an image of what I'm trying to achieve. This should send the XML commands to my server API and initiate an Environment called Animals.hwe to be shown on a videowall. note: the xmlcommand URL is changed because of the http not being allowed. My test code... import UIKit import SwiftUI let session = URLSession(configuration: .default) let url = URL(string: http........://192.168.0.196:8000/xmlcommand) var request = URLRequest(url: url) request.httpMethod = POST request.httpBody = type=open>environments/Animals.hwea1.data(using: .utf8) let task = session.dataTask(with: request) { data, response, error in // do something with the result } task.resume() // <- otherwise your network request won't be started With Rested App on Mac I can make the POST work fine with these settings: http. ..... ://192.16
Replies
5
Boosts
0
Views
5.9k
Activity
Oct ’20
On iPhone App Restart: File Descriptors Exhausted & Failed HTTP Requests
BEHAVIOR App runs great on first install. If I close the app and reopen, many times the network requests fail, most likely due to too many open files. If I restart the app 4 times, everything seems to load fine (until next time). A fresh install works as well. APP Flutter app. Utilizes flutter map package, which displays map tile layers. Otherwise, pulls JSON/API data every so often. Heavy/frequent pulling of tile images (typically ~1000 during a single pan). PROBLEM DEVICES: Issues ONLY happens on physical iPhones (tested on 11 and 15). iOS simulators work fine. Androids work fine On the Androids or simulator, I can pan the map and pull 3000+ tile images, and overlay data, with no issues. TESTING I have inspected disposal methods, closing network clients, even tried exit(0) in various places. Have tried app lifecycle widgets on paused, detached, resumed. Nothing changes the behavior. At one point, I thought I had the issue fixed when I changed my DNS from 1.1.1.1 to automatic, since all the
Replies
2
Boosts
0
Views
602
Activity
Sep ’24
Failed to install Requested application
I really dont know what that means i got a output which gave me Failed to install the requested application Code: 22 Failure Reason: The bundle identifier of the application could not be determined. I dont know if this is the only thing holding me back right now but its the only thing stopping from me seeing my project in the simulator Any help would be great THANKS IN ADVANCED
Replies
0
Boosts
0
Views
701
Activity
Apr ’22
Condensing HTTP request functions
Hi, For HTTP requests, I have the following function: func createAccount(account: Account, completion: @escaping (Response) -> Void) { guard let url = URL(string: http://localhost:4300/account) else { return } var request = URLRequest(url: url) request.httpMethod = POST request.setValue(application/json, forHTTPHeaderField: Content-Type) guard let encoded = try? JSONEncoder().encode(account) else { print(Failed to encode request) return } request.httpBody = encoded URLSession.shared.dataTask(with: request) { (data, response, error) in guard let data = data else { return } do { let resData = try JSONDecoder().decode(Response, from: data) DispatchQueue.main.async { completion(resData) } } catch let jsonError as NSError { print(JSON decode failed: (jsonError)) } }.resume() } Because various HTTP requests use different body structs and response structs, I have a HTTP request function for each individual
Replies
0
Boosts
0
Views
466
Activity
Aug ’24
Reply to Are watchOS 6.1 Beta and Xcode 11.1 GM not compatible?
Found the following in the Console ... maybe Apple has not uploaded the symbols yet?DVTDownloadable: Download Failed. Downloadable: https:/devimages-cdn.apple.com/downloads/xcode/dsc/Watch5_2_17S5054e.dmg. Error Domain=DataWritingACSURLSessionDelegate Code=1 Failed with HTTP status 403: forbidden UserInfo={NSLocalizedDescription=Failed with HTTP status 403: forbidden, NSHTTPURLResponse=<NSHTTPURLResponse: 0x7fb37aed5eb0> { URL: https://devimages-cdn.apple.com/downloads/xcode/dsc/Watch5_2_17S5054e.dmg } { Status Code: 403, Headers { Access-Control-Allow-Origin = ( * ); Age = ( 1 ); Content-Type = ( application/xml ); Date = ( Wed, 25 Sep 2019 01:23:05 GMT ); Server = ( ATS/8.0.5 ); Via = ( https/1.1 usrtv2-edge-lx-002.ts.apple.com (ApacheTrafficServer/8.0.5), https/1.1 usrtv2-edge-bx-008.ts.apple.com (ApacheTrafficServer/8.0.5) ); cdnuuid = ( 4699d613-767a-4145-ac42-4df3f8e5cf65-8
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’19
Checking the status of Endpoint Securty entitlement request
Guys I'm the account holder of my company and we are working on a new EPP solution. Approx two months go I requested an Endoint Security entitlement so we can develop our product and then requested it again about a month ago. Is there a way to see what is the status of the request and whether this time frame is indeed the one we should expect? Thanks a lot!
Replies
2
Boosts
0
Views
1k
Activity
Jul ’23
Reply to MusicKit Dev Token Refresh
Hi, experiencing this issue when the bundle ID is created and configured. My app's identifier on the developer website matches the bundle ID in Xcode. When my code makes any request to the Apple Music catalog, it still throws this error: Media API Token Service responded with status code: Not Found (404). This suggests that was likely not registered as a valid client identifier. Failed retrieving tokens for MusicDataRequest.Context(url: https://api.music.apple.com/v1/storefronts/nz). Error = .developerTokenRequestFailed. Is there any way to resolve this?
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’23