Search results for

Request failed with http status code 503

190,876 results found

Post

Replies

Boosts

Views

Activity

Code has restricted entitlements, but the validation of its code signature failed.
I’m developing a DriverKit sample test company’s USB Controller. My example will appear in the system log: Code has restricted entitlements, but the validation of its code signature failed. Hello World is not printed. What happened? command-line systemextensionsctl list in Terminal,.dext is installed in /Library/SystemExtensions folder.
4
0
2.5k
May ’21
Reply to Enabling outgoing network connections in Swift Playgrounds app
Playground should allow outgoing network connections in all cases. To test this, run a simple URLSession request like the one below: print(will start task) 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 did fail, 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() print(did start task) Does that work when you run it in your playground? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Oct ’22
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
altool sometimes fails with exit code 239
We are seeing some failures every now and then in our notarization TeamCity job where the altool --notarization-info command is failing with exit code 239. I didn't find anything about this by googling, except that the Mozilla guys are seeing the same issue (https://bugzilla.mozilla.org/show_bug.cgi?id=1562412).What does exit code 239 mean and can we prevent it somehow?
13
0
4.2k
Sep ’19
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.2k
Dec ’20
Build Failed Task failed with exit code 65
I am working on a project that uses Carthage, it’s been a couple of months since the last time the project was opened. Now I am trying to move dependencies to .xcframeworks because with the .framework, it wasn’t working. I encountered various errors and fixed them but there’s one dependency that I can’t fix, SwinjectStoryboard
. I tried using this workaround and setting command line tools I have also tried creating an empty project with only Swinject and SwinjectStoryboard dependency but still, my build is failing with the following message Build Failed Task failed with exit code 65: /usr/bin/xcrun xcodebuild -project /Users/abu/Developer/xcframework_2/Carthage/Checkouts/SwinjectStoryboard/SwinjectStoryboard.xcodeproj -scheme SwinjectStoryboard-iOS -configuration Release -derivedDataPath /Users/abu/Library/Caches/org.carthage.CarthageKit/DerivedData/12.5_12E262/SwinjectStoryboard/2.2.0 -sdk iphoneos ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=Y
1
0
2.5k
May ’21
git clone failed via https
clone failed using https $ git clone https://github.com/Homebrew/homebrew-core.git Cloning into 'homebrew-core'... fatal: Out of memory, malloc failed (tried to allocate 52428800000000000 bytes) fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. success using ssh $ git clone git@github.com:Homebrew/homebrew-core.git Cloning into 'homebrew-core'... remote: Enumerating objects: 1121549, done. remote: Counting objects: 100% (38/38), done. remote: Compressing objects: 100% (27/27), done. ^Cfetch-pack: unexpected disconnect while reading sideband packet git version git version 2.30.1 (Apple Git-130) sys version Darwin MacBook-Pro.local 21.2.0 Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021; root:xnu-8019.61.5~1/RELEASE_ARM64_T6000 arm64
0
0
1.2k
Jan ’22
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9824)
I found plenty of entries in the beta archives, but nothing really answers my question.My server has a GoDaddy TLS1.2 certificate and the server is set to allow TLSE1.2 ONLY as I need to have strict security. When executing a SOAP request via HTTPS I get the error NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9824). From what I understood from the beta postings is that one can bypass security by placing a setting in info.plist. But that would defeat the purpose.I have tested my certificate with https://www.ssllabs.com/ssltest/ and the report says my certificate and security is just fine. So does iOS 9.1 support TLS 1.2 or not ?
4
0
3.0k
Nov ’15
Reply to I can't view the new agreement in App Store Connect
Same for this account that was created for sandbox testing ... When I go to https://appstoreconnect.apple.com/review_agree I only have a blank page, console inspector shows that the request to https://appstoreconnect.apple.com/WebObjects/iTunesConnect.woa/ra/ui/log gives this 401 response : { errors : [ { id : ***************, status : 401, code : NOT_AUTHORIZED.NO_ACCESS, title : An account is required to access this system., detail : This Apple ID is not associated with any active account, so it cannot access this system., links : { see : /login?targetPrefix=/WebObjects/iTunesConnect.woa&errorKey=ITC.signin.error.invalidUser } } ] }
Dec ’21
Status Code 21007 being returned by App Store Sandbox verify receipt endpoint
Similar to what appears to have happened last year, the Sandbox verifyReceipt endpoint is returning the 21007 status code that should only be returned by the production URL and indicates that the receipt in question should instead be sent ... to the sandbox URL. Here's the documentation: Verify your receipt first with the production URL; proceed to verify with the sandbox URL if you receive a 21007 status code. Following this approach ensures that you do not have to switch between URLs while your application is tested, reviewed by App Review, or live in the App Store. We are sending a valid sandbox receipt (validated locally on device already), along with the shared secret / password parameter, and not getting any receipt info back, just this bogus status that should only be returned by the production URL. We could mitigate this by returning something like a failure status to our own client's request, but how are we supposed to test our code
1
0
1.4k
Oct ’22
Code signature validation failed fatally
seeing this error when I am trying to install my network extension: _macvnodechecksignature: /Applications/abc.app/Contents/MacOS/abc: code signature validation failed fatally: When validating /Applications/abc.app/Contents/MacOS/abc: Code has restricted entitlements, but the validation of its code signature failed. Unsatisfied Entitlements:__ I have set the right entitlements as far as I know . is this error about entitlements or signature that is not obvious from the message . this is sseen on Catalina 10.15.6 the macOS Network extension is Developer ID signed . still facing this error . any idea what will fix this error ??
11
0
8.0k
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
574
Dec ’16
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
1k
Aug ’20