Search results for

“Request failed with http status code 503”

201,016 results found

Post

Replies

Boosts

Views

Activity

Request location on the Apple Watch only, without code on the paired phone
Hi,I am unable to figure out how to request the users location via requestWhenInUseAuthorization() (resp. requestAlwaysAuthorization()) just using code on the WatchKit Extention. After some Google research I found the question on StackOverflow: https://stackoverflow.com/questions/47543655/request-location-on-the-apple-watch-only-without-code-on-the-paired-phone , but as well without any usefull solution.What I did is, to set in the Info.plist all required keys (NSLocationWhenInUseUsageDescription, and so on), as well on the iOS application and as well in the WatchKit Extention counterpart. The WatchKit Swift code snippet looks as follows:override func willActivate() { super.willActivate() locMgr.delegate = self if CLLocationManager.authorizationStatus() == .notDetermined { locMgr.requestWhenInUseAuthorization() } } func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) { switch status { ca
4
0
5.3k
Mar ’18
Reply to Cant Create/Update App Clips
Hello, I also have the same issue. Creating or pushing updates to AppClips was working fine last month, but now I see the same error. { errors : [ { id : 38a14d58-ff3a-4c77-8e0d-dba260685700, status : 409, code : ENTITY_ERROR.INCLUDED.INVALID_ID, title : The provided entity id is invalid, detail : The provided included entity id 'EN' has invalid format, source : { pointer : /included/0/id } } ] } It looks like @pumpkinpaul and I have done some of the same investigation and testing. I agree with everything he has outlined and we have come to the same frustrating conclusion. A bug was probably introduced sometime in between these two dates. I have this information from recorded HTTP interactions as part of our automated testing. I have included the request IDs here in case they help with the debugging. Success on Nov 12 with a Daiquiri version of 25RELEASE142: X-Request-Id: - TQFDTUQATMJM246YITQXKVXIPM Failure on Dec 19 with a Daiquiri version of 25HOTFIX33: X-Request
Dec ’25
Is it possible NEAppProxyUDPFlow for Https Requests data to writeDatagram iOS
I have implemented following code of NEDNSProxyProvider. My basic requirement is I want to process the flow but instead of using data from datagrams I want to use data received from our custom DNS server. After tons of articles documentation Im able to write following code. But it's failing continuously in writeDataGrams with Invalid arguments data and The operation could not be completed because Flow not connected. I know somethings is wrong in processing the data but what is wrong Im not able to figure out. Also I want to know is this even possible to achieve this by using API call inside datagrams for loop and then send data to writedatagrams? After getting JSONResponse Im using third party library to convert query form JSONData binary before sending it to writeDataGrams. https://github.com/Bouke/DNS. The reason of using API call inside datagrams is, our backend server needs track of all https requests and the data that server send in response of API ca
2
0
618
Jun ’23
Can't get developer status for apple account
Hello! I recently submitted a developer status request to developer.apple.com. There was no answer, but I realized where I made a mistake: I used my friend's bank card. After that, I sent another request, having entered my personal bank card. 2 days have passed, there is no answer. Please cancel the first request and accept the second request with the correct card. The technical support form on the site does not work, I tried different browsers and computers. The chat support on the regular Apple website couldn't help me, they don't handle developer accounts. Request status when trying to send a completed technical support form, then a 503 code is received in response (this can be seen in the developer tools in the browser). Maybe there is some email tech support that could help me?
1
0
363
Sep ’21
Reply to App Store Connect analytics reports return 500 API error
Now I started facing another problem with pagination: next url is invalid. Get: https://api.appstoreconnect.apple.com/v1/analyticsReportRequests/{id}/relationships/reports?cursor=Mg Error: { errors: [ { id: 56e0cfab-4e86-4e4b-9a12-d76277ad9f94, status: 400, code: PARAMETER_ERROR.INVALID, title: A parameter has an invalid value, detail: 'Mg' is not a valid cursor for this request, source: { parameter: cursor } } ] }
Apr ’25
Reply to It's possible to test web service in playground?
You need to set needsIndefiniteExecution so that the playground keep running long enough for the network request to complete. For example, this code: import Foundation import PlaygroundSupport let url = URL(string: https://example.com)! let request = URLRequest(url: url, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 60.0) URLSession.shared.dataTask(with: request) { (data, response, error) in if let error = error as NSError? { print(task transport error (error.domain) / (error.code)) return } let response = response as! HTTPURLResponse let data = data! print(task finished with status (response.statusCode), bytes (data.count)) }.resume() PlaygroundPage.current.needsIndefiniteExecution = trueends up printing:task finished with status 200, bytes 1256Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Mar ’20
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
Hi All,I have been facing an issue related to the google map integration on iOS application.I have prepared an iOS application with Google API and Directions API. It was working fine till last month and now it is not working as expected. It says “NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)” on loading the application with directions API request and the map also not loading. I have tried with App Transport Security settings, still I found no luck.But if am pasting the same API request in the browser, I am getting the JSON response.Any quick help would be greatly appreciated.Thanks
0
0
1.2k
Jan ’17
Reply to The requested app is not available or doesn't exist.
I reproduced the issue in TestFlight, and the logs mainly show errors related to the Apple account / protected data decryption, along with a TestFlight installation failure. Main errors observed: Failed to fetch an AMSDataProtectionClass encryption/decryption key with error = -34018 Failed to decrypt account property for accountFlags Error fetching LSApplicationRecord with Code = -10814 TestFlight install request returning HTTP 404 on the /install URL
Apr ’26
Reply to Unable to accept the updated Paid Applications Schedule 2
Same here! It just sits there. And I am unable to get into my Apps to make updates without this. In the browser console, there is a 404 error on the page. (This happens in Google Chrome and Safari on macOS) [Error] Failed to load resource: the server responded with a status of 404 () (tidbits-popover.angular.min.js.map, line 0) https://appstoreconnect.apple.com/agreements/scripts/npm/tidbits-popover.angular.min.js.map [Error] Failed to load resource: the server responded with a status of 500 () (locales, line 0)
Sep ’20
Apple Pay on the Web - Merchant Validation fails with 400 and 403 status returned by Apple
My company has implemented Apple Pay on the Web. We are getting 400 and 403 status codes returned from Apple during the merchant validation process and have no idea why. All the required fields described here are provided. (https://developer.apple.com/documentation/apple_pay_on_the_web/apple_pay_js_api/requesting_an_apple_pay_payment_session) We completed the configuration of environments, registering and verifying domains, and have even tested successfully on lower environments.
2
0
1.3k
Dec ’20
How to turn off Safari's security prompt , when requests Http server
Hey guys, Now, I'm developing a website, that is QR Code Reader, to use WebRTC on front end environment. It supposed to be running on ios Safari. My problem is that when it requests from Https to Http server , it appears security prompt on Safari. I'm looking for how to turn off that prompt permanently. So, is there any way to turn off that prompt on ios Safari ?? I've tried to check on safari preferences which is no option, put below meta tag on HTML page , and run javascript when it requests as POST request like below. let el = document.createElement('meta') el.setAttribute('http-equiv', 'Content-Security-Policy') el.setAttribute('content', 'upgrade-insecure-requests') document.head.append(el) But, it's still appearing....
0
0
1.1k
Aug ’20
MDM push request via HTTP/2
Hi there,I'd like to know, if it's possible to push devices through the new HTTP/2 APNS API.Tried it myself already, but the APNS refuses my request, responding with reason:DeviceTokenNotForTopic, even though the topic matches the one i presented the device when I enrolled it.Greetings
0
0
594
Dec ’16
Request location on the Apple Watch only, without code on the paired phone
Hi,I am unable to figure out how to request the users location via requestWhenInUseAuthorization() (resp. requestAlwaysAuthorization()) just using code on the WatchKit Extention. After some Google research I found the question on StackOverflow: https://stackoverflow.com/questions/47543655/request-location-on-the-apple-watch-only-without-code-on-the-paired-phone , but as well without any usefull solution.What I did is, to set in the Info.plist all required keys (NSLocationWhenInUseUsageDescription, and so on), as well on the iOS application and as well in the WatchKit Extention counterpart. The WatchKit Swift code snippet looks as follows:override func willActivate() { super.willActivate() locMgr.delegate = self if CLLocationManager.authorizationStatus() == .notDetermined { locMgr.requestWhenInUseAuthorization() } } func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) { switch status { ca
Replies
4
Boosts
0
Views
5.3k
Activity
Mar ’18
Reply to Cann't Download TestFlight crash report
We're also experiencing this issue. We get a 500 http status code on the web response.
Replies
Boosts
Views
Activity
Mar ’23
Reply to Cant Create/Update App Clips
Hello, I also have the same issue. Creating or pushing updates to AppClips was working fine last month, but now I see the same error. { errors : [ { id : 38a14d58-ff3a-4c77-8e0d-dba260685700, status : 409, code : ENTITY_ERROR.INCLUDED.INVALID_ID, title : The provided entity id is invalid, detail : The provided included entity id 'EN' has invalid format, source : { pointer : /included/0/id } } ] } It looks like @pumpkinpaul and I have done some of the same investigation and testing. I agree with everything he has outlined and we have come to the same frustrating conclusion. A bug was probably introduced sometime in between these two dates. I have this information from recorded HTTP interactions as part of our automated testing. I have included the request IDs here in case they help with the debugging. Success on Nov 12 with a Daiquiri version of 25RELEASE142: X-Request-Id: - TQFDTUQATMJM246YITQXKVXIPM Failure on Dec 19 with a Daiquiri version of 25HOTFIX33: X-Request
Replies
Boosts
Views
Activity
Dec ’25
Xcode download symbols for WatchOS 9.0.1 (20R8380) Failed HTTP 403
Failed with HTTP status 403: forbidden Domain: DVTACSURLSessionDelegate Code: 1 User Info: { DVTDeviceErrorIsProxied = 1; DVTErrorCreationDateKey = 2022-09-26 07:55:45 +0000; } System Information macOS Version 12.6 (Build 21G115) Xcode 14.0 (21335) (Build 14A309) Timestamp: 2022-09-26T15:55:45+08:00 Has anyone else had a similar problem?
Replies
7
Boosts
0
Views
2.4k
Activity
Sep ’22
Is it possible NEAppProxyUDPFlow for Https Requests data to writeDatagram iOS
I have implemented following code of NEDNSProxyProvider. My basic requirement is I want to process the flow but instead of using data from datagrams I want to use data received from our custom DNS server. After tons of articles documentation Im able to write following code. But it's failing continuously in writeDataGrams with Invalid arguments data and The operation could not be completed because Flow not connected. I know somethings is wrong in processing the data but what is wrong Im not able to figure out. Also I want to know is this even possible to achieve this by using API call inside datagrams for loop and then send data to writedatagrams? After getting JSONResponse Im using third party library to convert query form JSONData binary before sending it to writeDataGrams. https://github.com/Bouke/DNS. The reason of using API call inside datagrams is, our backend server needs track of all https requests and the data that server send in response of API ca
Replies
2
Boosts
0
Views
618
Activity
Jun ’23
Can't get developer status for apple account
Hello! I recently submitted a developer status request to developer.apple.com. There was no answer, but I realized where I made a mistake: I used my friend's bank card. After that, I sent another request, having entered my personal bank card. 2 days have passed, there is no answer. Please cancel the first request and accept the second request with the correct card. The technical support form on the site does not work, I tried different browsers and computers. The chat support on the regular Apple website couldn't help me, they don't handle developer accounts. Request status when trying to send a completed technical support form, then a 503 code is received in response (this can be seen in the developer tools in the browser). Maybe there is some email tech support that could help me?
Replies
1
Boosts
0
Views
363
Activity
Sep ’21
Reply to App Store Connect analytics reports return 500 API error
Now I started facing another problem with pagination: next url is invalid. Get: https://api.appstoreconnect.apple.com/v1/analyticsReportRequests/{id}/relationships/reports?cursor=Mg Error: { errors: [ { id: 56e0cfab-4e86-4e4b-9a12-d76277ad9f94, status: 400, code: PARAMETER_ERROR.INVALID, title: A parameter has an invalid value, detail: 'Mg' is not a valid cursor for this request, source: { parameter: cursor } } ] }
Replies
Boosts
Views
Activity
Apr ’25
It show "server status code 1013" when initialized the volume at Xsan server
Hi All,It show server status code 1013 when initialized the volume at Xsan server. Does anyone have experience for this status code?Best Wishes,Bruce Chen
Replies
1
Boosts
0
Views
458
Activity
Mar ’16
Reply to It's possible to test web service in playground?
You need to set needsIndefiniteExecution so that the playground keep running long enough for the network request to complete. For example, this code: import Foundation import PlaygroundSupport let url = URL(string: https://example.com)! let request = URLRequest(url: url, cachePolicy: .reloadIgnoringLocalCacheData, timeoutInterval: 60.0) URLSession.shared.dataTask(with: request) { (data, response, error) in if let error = error as NSError? { print(task transport error (error.domain) / (error.code)) return } let response = response as! HTTPURLResponse let data = data! print(task finished with status (response.statusCode), bytes (data.count)) }.resume() PlaygroundPage.current.needsIndefiniteExecution = trueends up printing:task finished with status 200, bytes 1256Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Replies
Boosts
Views
Activity
Mar ’20
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
Hi All,I have been facing an issue related to the google map integration on iOS application.I have prepared an iOS application with Google API and Directions API. It was working fine till last month and now it is not working as expected. It says “NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)” on loading the application with directions API request and the map also not loading. I have tried with App Transport Security settings, still I found no luck.But if am pasting the same API request in the browser, I am getting the JSON response.Any quick help would be greatly appreciated.Thanks
Replies
0
Boosts
0
Views
1.2k
Activity
Jan ’17
Reply to The requested app is not available or doesn't exist.
I reproduced the issue in TestFlight, and the logs mainly show errors related to the Apple account / protected data decryption, along with a TestFlight installation failure. Main errors observed: Failed to fetch an AMSDataProtectionClass encryption/decryption key with error = -34018 Failed to decrypt account property for accountFlags Error fetching LSApplicationRecord with Code = -10814 TestFlight install request returning HTTP 404 on the /install URL
Replies
Boosts
Views
Activity
Apr ’26
Reply to Unable to accept the updated Paid Applications Schedule 2
Same here! It just sits there. And I am unable to get into my Apps to make updates without this. In the browser console, there is a 404 error on the page. (This happens in Google Chrome and Safari on macOS) [Error] Failed to load resource: the server responded with a status of 404 () (tidbits-popover.angular.min.js.map, line 0) https://appstoreconnect.apple.com/agreements/scripts/npm/tidbits-popover.angular.min.js.map [Error] Failed to load resource: the server responded with a status of 500 () (locales, line 0)
Replies
Boosts
Views
Activity
Sep ’20
Apple Pay on the Web - Merchant Validation fails with 400 and 403 status returned by Apple
My company has implemented Apple Pay on the Web. We are getting 400 and 403 status codes returned from Apple during the merchant validation process and have no idea why. All the required fields described here are provided. (https://developer.apple.com/documentation/apple_pay_on_the_web/apple_pay_js_api/requesting_an_apple_pay_payment_session) We completed the configuration of environments, registering and verifying domains, and have even tested successfully on lower environments.
Replies
2
Boosts
0
Views
1.3k
Activity
Dec ’20
How to turn off Safari's security prompt , when requests Http server
Hey guys, Now, I'm developing a website, that is QR Code Reader, to use WebRTC on front end environment. It supposed to be running on ios Safari. My problem is that when it requests from Https to Http server , it appears security prompt on Safari. I'm looking for how to turn off that prompt permanently. So, is there any way to turn off that prompt on ios Safari ?? I've tried to check on safari preferences which is no option, put below meta tag on HTML page , and run javascript when it requests as POST request like below. let el = document.createElement('meta') el.setAttribute('http-equiv', 'Content-Security-Policy') el.setAttribute('content', 'upgrade-insecure-requests') document.head.append(el) But, it's still appearing....
Replies
0
Boosts
0
Views
1.1k
Activity
Aug ’20
MDM push request via HTTP/2
Hi there,I'd like to know, if it's possible to push devices through the new HTTP/2 APNS API.Tried it myself already, but the APNS refuses my request, responding with reason:DeviceTokenNotForTopic, even though the topic matches the one i presented the device when I enrolled it.Greetings
Replies
0
Boosts
0
Views
594
Activity
Dec ’16