Search results for

Request failed with http status code 503

190,575 results found

Post

Replies

Boosts

Views

Activity

Apple Watch via iPhone: Failed with HTTP status 403: forbidden
Hi, I recently updated my watch and phone to watchOS 9.1 and iOS 16.1 beta 3, and now my Xcode 14.0.1 is not able download the debug symbols for watchOS. It just gives me the following error: Apple Watch via iPhone: Failed with HTTP status 403: forbidden I've tried restarting all the devices + restoring both iOS and watchOS but the issue persists. I am unable to continue development on watchOS anymore. Is there a solution to this?
5
0
2.4k
Sep ’22
Get HTTP Status code from NWConnection (web-socket) handshake failure
In our Mac application, we are creating a web-socket connection using NWConnection and we are able to successfully establish the connection and read/write data from both sides. We have auth tokens which are sent in headers of NWProtocolWebSocket.Options to the server. If token is good, server accepts the web-socket connection. As per RFC 6455, if server does not want to accept the connection for any reason during web-socket handshake, it returns 403 status code. In our case, if cookies are not valid, server returns 403 during web-socket handshake. However, we could not find a way to read this status code in Network.framework. We are only getting failed state with NWErrorwhich is .posix(53) but there is no indication of the status code 403. We tried looking into protocol metadata on NWConnection object and they are nil. We tested the same using URLSessionWebSocketTask where in failure callback method, we could see 403 status code
3
0
1.2k
Nov ’21
apple connect apis respond with http status code: 500
There are cases where apple connect apis respond with the following error { status:500, code:UNEXPECTED_ERROR, title:An unexpected error occurred., detail:An unexpected error occurred on the server side. If this issue continues, contact us at https://developer.apple.com/contact/. } But if the same request that returned above error, is called again (without any change), then response will be successful Apis that may return above error are : https://developer.apple.com/documentation/appstoreconnectapi/app_store/in-app_purchase
1
0
1k
Oct ’22
HTTP load failed (error code:
Hi,I am working on an application , where it getting urls in response for Images to load from that urls.I am getting HTTP Load failed against error code 1003, and 999 , and i am unable to debug those failed Urls.is there way to debug those failed HTTP Request so that i can be aware of those list, due to this my app is freezing, and behaving some weird issue sometimes.any help is much appreciated.here you go with my plist information<?xml version=1.0 encoding=UTF-8?> <!DOCTYPE plist PUBLIC -/ <plist version=1.0> <dict> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> <key>CFBundleIdentifier</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>$(PRODUCT
6
0
13k
Jan ’18
unexpected http status code: 200 355
Hello,I'm using the URLSession libraries to talk to my server and getting this response on the access logs from the phone. Success it works! But i'm not getting any response back from the server yet. I'm using apache. i am not sure what this 355 code is. Anyone know if it's something to do with the URLSession libraries?My regular code is 200 318.My google search of such a code didn't come up with anything yet. Because it's a standard http code i don't think it's anything to do with my server.Thanks for any help.
2
0
1.7k
Aug ’17
Getting HTTP 503 Service Unavailable using Apple Pay in onvalidatemerchant
This morning I noticed that Apple is returning a 503 HTTP code when I try to start a checkout using Apple Pay JS and hit their servers before calling completeMerchantValidation.This was working code, and I also noticed GrubHub seems to be erroring when I try using Apple Pay on their site, and other sites that support Apple Pay aren't showing the button at all right now. Pretty sure this is something on Apple's end, but I wanted to check if others are observing this behavior as well.
1
0
1.4k
Apr ’17
error: Failed with exit code exited with status 1 error in Xcode14.3.1
Hi All I am using Mac Mini with iOS version Ventura 13.4.1 and Xcode version 14.3.1 While compiling my project I am getting following error Error: Failed with exit code exited with status 1 (in target 'MyDemoApp' from project 'MyDemoApp') I tried solution mentioned in support page. But it is not working out. Could you please suggest a solution to overcome this? Do we need to re-install MAC mini for this> Its a show stopper. Kindly help
4
0
4.7k
Jul ’23
Status of "NEHotspotHelper Entitlement Request"
Hi there, I know here is not the right place to ask this question as title, but It's been 3 weeks I haven't got any responses, even I asked the status through the mail. Could someone please help me to check it? My Network Extension framework request-Follow-up ID is 792333531. I hope my request is still processing rather than lost it. Thank you so much!
1
0
930
Feb ’22
SwiftUI WeatherKit returns HTTP status code 403
Trying to get weather data for a specific location and specific timezone. Generated Service identifier and Private Key, from Apple developer site. Then Generated public key Generated jwt token from jwt.io by keying in the payload, header, public, and private key. Header { alg : ES256, // predefined kid : “keyid” , // key id created for WeatherKit id : “developer_team_account_id.com.company_name.MyWeatherKit, typ : JWT } Payload { iat : 1710117942, exp : 1710204342, iss : developer_team_account_id, sub : com.company_name.MyWeatherKit } I Then call this function: func getWeatherData(requestId: String, latitudeStr: String, longitudeStr: String, completion: @escaping (Bool) -> () ){ var country = US var language = en var tz = CST let jwtToken = token here.... let urlString:String = https://weatherkit.apple.com/api/v1/availability/ + language + / + latitudeStr + / + longitudeStr + ? + country= + country + & + timezone= + tz print(Apple weather urlString: (urlString)) let weatherURL = URL(string: ur
0
0
649
Mar ’24
MPSMatrixDecompositionCholesky Status code
Hi, I am trying to extend the pytorch library. I would like to add MPS native Cholesky Decomposition. I finally got it working (mostly). But I am struggling to implement the status codes. What I did: // init status id status = [device newBufferWithLength:sizeof(int) options:MTLResourceStorageModeShared]; if (status) { int* statusPtr = (int*)[status contents]; *statusPtr = 42; // Set the initial content to 42 NSLog(@Status Value: %d, *statusPtr); } else { NSLog(@Failed to allocate status buffer); } ... [commandBuffer addCompletedHandler:^(id commandBuffer) { // Your completion code here int* statusPtr = (int*)[status contents]; int statusVal = *statusPtr; NSLog(@Status Value: %d, statusVal); // Update the 'info' tensor here based on statusVal // ... }]; for (const auto i : c10::irange(batchSize)) { ... [filter encodeToCommandBuffer:commandBuffer sourceMatrix:sourceMatrix resultMatrix:solutionMatrix statu
0
0
815
Sep ’23