We are seeing network errors in Outlook mail on iOS and MacOS safari browsers. As per current investigation, we notice these network error when the user tries to use outlook after leaving it open on Safari for a while. Observations: Issue present in both MacOS and iOS safari. Issue is not present in other webkit browsers like brave and edge on iOS. Issue is reproable on both mini and big owa on safari browser. Issue is not related to post requests being sent in different packets on safari browser. Requests are only blocked for outlook.office/outlook.live domains What does not fix this issue? Reloading the application Clearing cookie, local storage or session storage Unregistering service workers Redirecting to a different page and coming back to outlook domain Re authenticating the users What fixes this issue? Reconnecting to wifi or mobile network Reconnecting vpn Removing safari from background and reopening Flushing the dns in setting
Search results for
Request failed with http status code 503
190,994 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I'm trying to connect my iOS app to an HTTPS site runs in my network. I can access the site from my browser with http://domain.com.sa but not through the app. I have tried setting the ATS and disabling it too. but the same error appeared:NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)I am using xcode 7, Swift 2 and testing the app on iphone with iOS 9.Any idea how to fix this ?
Hi there,We'd like to monitor the HTTP performance made by AVFoudnation.We tried AVPlayerItemAccessLogEvent.numberOfBytesTransferred and AVPlayerItemAccessLogEvent.transferDuration fields. They look like a mystery for us. For example, when the video switch from one resolution to another, AVPlayerItemAccessLogEvent.numberOfBytesTransferred sometimes becomes 0; when I seek the PHT from one to another, sometimes, the AVPlayerItemAccessLogEvent.numberOfBytesTransferred becomes 0 or remains unchanged while AVPlayerItemAccessLogEvent.transferDuration keeps increasing (we know the segments are being downloaded for sure, though).In order to reliably monitor the HTTP performance for AVFoundation, I want to delegate segment requests to a local HTTP server so that the monitor can be done over there. We'd like to know if Apple allows people to do so.Thanks you,Stonny
I’ve two automations set. Send a notification when battery rises above 80% Set Always ON display off on apple watch (via Shortcuts Automation, everyday at 12 a) For these aforementioned shortcuts I get the following errors frequently, on my Lock Screen, Wha is INCExtensionErrorDomain error 1307 and Remote execution timed out error? And how can these errors be mitigated?
I suspect their is broad support for implementing a renewal status notification which is sent on every renewal of an auto-renewing subscription. I suggest that you submit an enhancement request for iTunesConnect to implement such support. You can submit the enhancement request using the Apple Developer Bug Report web page - http://bugreport.apple.com.rich kubota - rkubota@apple.comdeveloper technical support CoreOS/Hardware/MFI
Topic:
App & System Services
SubTopic:
StoreKit
Tags:
I reread the docs and saw that the Feedback Service was listed in the Legacy Information section of the reference below. In that section, when a remote notification cannot be delivered because the intended app does not exist on the device, the feedback service adds that devices's token to its list. This information is returned in the connection. The new HTTP2 interface looks like it takes care of the feedback service as seen in one of the status codes available in the the request's response.In the section Apple Push Notification Service: Communicating with APNs, it has a status code for the APNs response: 410 The device token is no longer active for the topic.The whole point of the feedback service was to provide information on when to stop sending remote notifications that will fail to be delievered. This feedback is now available in the 410 status code.You don't need both services. The provider server should use the new HTTP2 protocol as the pre
Topic:
App & System Services
SubTopic:
Notifications
Tags:
ok I was able to do it with the API I followed a medium post called Generating JWT Tokens for App Store Connect API to get the signed JWT with my api key (apple won't let me link to it) https://medium.com/xcblog/generating-jwt-tokens-for-app-store-connect-api-2b2693812a35 2) then I went to the download codes link that failed and was able to get the ID from that (copy link address) e.g https://appstoreconnect.apple.com/iris/v1/subscriptionOfferCodeOneTimeUseCodes/#######/values (the ###### is the id) then I was able to make a request 3) > curl -X GET https://api.appstoreconnect.apple.com/v1/subscriptionOfferCodeOneTimeUseCodes/######/values --HEADER Authorization: Bearer KEY-GENERATED-IN-STEP-1 which spit out all of the codes you can add > codes to the end of command to write to a file called codes
Topic:
App & System Services
SubTopic:
StoreKit
Tags:
When you use the URLSession convenience APIs the completion handler is called asynchronously. This works in normal apps because the app keeps running. In XCTest, however, the process running the tests terminates before the task completes. There are two ways you can tackle this: Using expectations Using Swift concurrency With expectations, you set up an expectation at the start of your task and then wait for it be fulfilled at the end. Then, in your completion handler, you fulfil the expectation. For example: func testWithExpectation() throws { print(did start test) let expectation = self.expectation(description: task completion) print(will start task) let url = URL(string: https://postman-echo.com/delay/3)! 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)) } els
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Hello, I am building with Xcode and I keep getting this error Command PhaseScriptExecution failed with a nonzero exit code Please Help. Am on latest Xcode 13.2.1 and latest cocoapods
Hi - our CI bots have been failing for days with this error: Assertion: Trigger exited with non-zero status 7. We have been unable to find any documentation on this status, so we really don't know either the cause nor the fix. XCode gives us the Fix It... button, which opens the bot to our pre-integration scripts, but those haven't changed in months.Any help would be appreciated. Thanks.
Hi, I am brand new to Xcode and I keep on getting an error message saying Command CodeSign failed with a nonzero exit code. I am not enrolled in the Apple Developer Program. Does anyone know how to fix this?
p.authenticationMethod = NEVPNIKEAuthenticationMethodSharedSecret; p.sharedSecretReference = [self searchKeychainCopyMatching:@PSK]; Failed to create IKEV2 using PSK, and the following error message is displayed: Start VPN failed: [The operation couldn’t be completed. (NEVPNErrorDomain error 1.)] May I ask what the reason is?
I have downloaded Xcode 7 beta 4 and opened my Swift iOS 8.4 project in Xcode 7, and have used the Convert to latest Swift syntax tool to convert the project to Swift 2.0. But, when I run the app, an error occurs that says: /Applications/Xcode-beta.app/Contents/Developer/usr/bin/actool failed with exit code 255.I tried to clean the project, and wipe the Derived Data folder, and uninstalling Xcode 6.4 and running the app, but the problem persists.Why is this error occurring? Thanks!
Hi there, I was trying to capture HTTPS traffic by Charles or Burp for iOS app. I was able to capture most of the requests, but one request is missing most of the time, and occasionally I can capture one. I want to ask is this a bug by iOS networking framework, or there is some special flags/techniques can do this? How can I proceed? I was able to debug and see the request is being sent out and get the response, but it's just not captured by proxy. Thanks.
Verify applecdn is available。 curl -v https://app-site-association.cdn-apple.com/a/v1/YourDomain eg. fail request curl -v https://app-site-association.cdn-apple.com/a/v1/www.123.com * Trying 59.108.139.130:443... * Connected to app-site-association.cdn-apple.com (59.108.139.130) port 443 (#0) * schannel: disabled automatic use of client certificate * ALPN: offers http/1.1 * ALPN: server accepted http/1.1 * using HTTP/1.1 > GET /a/v1/www.123.com HTTP/1.1 > Host: app-site-association.cdn-apple.com > User-Agent: curl/8.0.1 > Accept: */* > * schannel: remote party requests renegotiation * schannel: renegotiating SSL/TLS connection * schannel: SSL/TLS connection renegotiated * schannel: remote party requests renegotiation * schannel: renegotiating SSL/TLS connection * schannel: SSL/TLS connection renegotiated < HTTP/1.1 404 Not Found < Content-Type: text/plain; charset=utf-8 < Content-Length:
Topic:
Code Signing
SubTopic:
Entitlements
Tags: