Request failed with http status code 503

158,395 results found

Post not yet marked as solved
14 Replies
Currently seeing this with Github. I have allowed access from the GIthub side but Xcode Cloud fails to receive that access.
Post not yet marked as solved
1 Replies
I’m still coming up to speed on QUIC myself, so I spent some time digging into this. AFAICT this is working as designed. On the client side, you can create a QUIC connection in one of two ways: As a connection, using NWConnection As a connection group, using NWConnectionGroup In both cases the object you create ‘owns’ stream ID 0. In the first case you can access it via the I/O methods on the connection. In the second case you can’t access it at all. If there’s a specific reason you need to use a connection group and perform I/O on stream ID 0, I recommend that you file an enhancement request [1] explaining the real world impact of this limitation. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1] Or is it a bug report? That’s a tricky one (-: However, it doesn’t matter, it’ll go to the right folks either way.
Post not yet marked as solved
0 Replies
42 Views
When accessing the REST API, If you apply include=albums to a 'catalog//songs' endpoint requests with a filter on ISRC, the API will, without fail, return a 504 error status. If you remove the 'include=albums' and/or replace it with something like 'include=artists' it works fine. This has been like this for months and we need to get album details back with these requests. Could the Apple team please respond and verify the issue as it's blocking production for us. Thanks.
Posted
by
Post not yet marked as solved
2 Replies
If it is None or Sign to Run Locally, isn't show up. That doesn’t surprise me. For day-to-day development, I strongly recommend Apple Development signing. The easiest way to get that is to enable automatic signing and then select your team from the popup. Oh, and the reason why that’s so important is that it gives macOS a way to track the identity of your code. See TN3127 Inside Code Signing: Requirements for all the gory details. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Post not yet marked as solved
1 Replies
URLSesison suspends its request timeout while waiting for the delegate to respond to an authentication challenge. However, that doesn’t guarantee that there’ll be no timeout. In the case of a server trust evaluation challenge, you’re called during the TLS handshake process. If you delay too long, the server might time out the connection. You generally deal with this using retry logic and caching. If a request failed during a challenge, you retry, and hopefully that’ll hit your cache of the challenge result. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Post not yet marked as solved
0 Replies
38 Views
For important background information, read Extra-ordinary Networking before reading this. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com Network Interface Statistics One FAQ when it comes to network interfaces is “How do I get network interface statistics?” There are numerous variants of this: Some folks ask about specific network interfaces: “How do I get cellular data usage?” Some folks are interested in per-app statistics: “How do I get cellular data usage statistics for each app?” or “How do I get cellular data usage statistics for my app?” Some folks only care about recent statistics: “How can I tell how much network data this operation generated?” Some folks care about usage across restarts: “How do I get the cellular data usage shown in the Settings app on iOS?” Most of these questions have no supported answers. However, there are a some supported techniques available. This post explains those techniques, and their limitations. Metri
Posted
by
Post not yet marked as solved
1 Replies
Are there any iOS apps Apps? Or APIs? If you’re asking about apps, you’re in the wrong place. Apple Developer Forums is primarily focused on helping developers with code-level issues. If you want to use an existing app, you’ll probably have more luck over on Apple Support Community, run by Apple Support. If you’re asking about how to build an app to do this, post back here and we can talk. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Post not yet marked as solved
1 Replies
Have there been any internal changes recently? Yes. There are internal changes happening all the time. I suspect you’re crashing now because your code is being used with a string that was bridged from Swift, whereas previously it was always seeing a native NSString, but it’s hard to say without more context. Please understand that the entire crash log cannot be attached for security reasons. I really need a crash report to assist you properly. Can you post a redacted one? Posting a Crash Report has advice on how redact a crash report while still preserving enough of the format for it to be useful. Alternatively, can you post a snippet of code, including the actual string you’re using, that reproduces the crash? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Post not yet marked as solved
0 Replies
50 Views
Hello, I am writing as I am seeing a very strange behavior when attempting to run an HKStatisticsCollectionQuery over multiple app starts. Steps: Initially load and launch my app into an iOS simulator (running iOS 17.2) via Xcode (version 15.3). Execute code path which invokes the following method below. Authorize necessary Read permission for the HKQuantityTypeIdentifierStepCount type. Observed that a non-nil HKStatisticsCollection is returned in the initialResultsHandler, with corresponding expected datapoints. These datapoints are in no way stored or retained on the device at all. Stop the app via Xcode. Relaunch the app via Xcode. Execute the same code path as in step 2. Observed (via breakpoints) that even though the query is executed by the HKHealthStore, the initialResultsHandler is never called and no HKStatisticsCollection is ever returned. Input parameters are the same in both instances of the call, and can confirm there is data in the devices HealthKit datastore. I would expect, r
Posted
by
Post not yet marked as solved
8 Replies
I encountered the same issue. I have an ARKit app, which in Xcode 14 could directly load the .rcproject created with Reality Composer into the project. However, after upgrading to Xcode 15, this project can no longer be previewed or adjusted. The current tool is Reality Composer Pro, which apparently does not support .rcproject and .reality files. Therefore, we first need to use Reality Composer in Xcode 14 to export to USDZ. For the exporting method, refer to this link: https://developer.apple.com/documentation/realitykit/exporting-a-reality-composer-scene-to-usdz Then, we need to adjust the app to load and use the USDZ file instead of loading the reality file's URL. This way, any subsequent updates will only require adjusting the USDZ file, which currently seems to be a better approach.
Post not yet marked as solved
7 Replies
Response from Apple re: Packet Logger no longer working: The Bluetooth logging profile is now required on macOS to use PacketLogger (same as iOS). This first started in recent macOS 14.5 seeds. Please install the Bluetooth logging profile from: https://developer.apple.com/bug-reporting/profiles-and-logs/?platform=macos&name=bluetooth and try this again.
Post not yet marked as solved
1 Replies
related question: https://forums.developer.apple.com/forums/thread/750801?page=1#786509022
Post marked as solved
1 Replies
80 Views
Please run the following UIKit app. It uses a collection view with compositional layout (list layout) and a diffable data source. The collection view has one section with one row. The cell contains a text field that is pinned to its contentView. import UIKit class ViewController: UIViewController { var collectionView: UICollectionView! var dataSource: UICollectionViewDiffableDataSource! override func viewDidLoad() { super.viewDidLoad() configureHierarchy() configureDataSource() } func configureHierarchy() { collectionView = .init(frame: .zero, collectionViewLayout: createLayout()) view.addSubview(collectionView) collectionView.frame = view.bounds } func createLayout() -> UICollectionViewLayout { UICollectionViewCompositionalLayout { section, layoutEnvironment in let config = UICollectionLayoutListConfiguration(appearance: .insetGrouped) return NSCollectionLayoutSection.list(using: config, layoutEnvironment: layoutEnvironment) } } func configureDataSource() { let cellRegistration = UICollectionView.CellRegi
Posted
by
Post not yet marked as solved
0 Replies
76 Views
im using the m2 MacBook Air, and for some odd reason, according to this test: https://www.testufo.com google runs at 60 hz while safari runs at 30 hz. I havent found a fix to this, and would like to know one. thanks.
Posted
by