Search results for

Request failed with http status code 503

190,749 results found

Post

Replies

Boosts

Views

Activity

Code Signing Failed With A Nonzero Exit Code
Hi, I've been stuck with this error for months now. It basically allows me to compile and see my app on my device, but when I try to open in on another device it fails. This is what I am getting. resource fork, Finder information, or similar detritus not allowed Command CodeSign failed with a nonzero exit code I have tried running CleanDetritus with little to none results. I have also tried reinstalling Xcode from scratch, changing signing options.. none seemed to work. Does anyone have suggestions? Also the apple development support did not really help. Thanks.
2
0
494
Jan ’21
Reply to Can't create new app version on App Store Connect
Same, tried reuploading app from archive manager, tried on windows chrome, mac chrome and safari. Last version was 2.0.1, next version should be 2.1.3, tried that, tried 2.0.2, tried 2.1.0. Error on inspect: { appName: appstore, payload: [ { logLevel: ERROR, message: API Response Error: NEW_PLATFORM_OR_VERSION_RESPONSE, url: https://appstoreconnect.apple.com/apps/{{removed for security}}/appstore/ios/version/deliverable, stackTrace: status code: 500 --- api correlation key: {{removed for security}} } ], eventKit: logger, env: PROD } Other issues before this error: Metrics config: No config provided via delegate or fetched via init(), using default/cached config values. The Post Request thats failing https://appstoreconnect.apple.com/iris/v1/appStoreVersions
Feb ’24
Reply to Where is the Focus Status API
More information can be found in https://developer.apple.com/documentation/sirikit/messaging Section: Sharing the User’s Focus Status Highlights: FocusStatusCenter import Intents /// Retrieve the current authorization status: INFocusStatusAuthorizationStatus INFocusStatusCenter.default.authorizationStatus /// Request authorization to check Focus Status INFocusStatusCenter.default.requestAuthorization { status in /// Provides a INFocusStatusAuthorizationStatus } /// Check if Focus is enabled. INFocusStatusAuthorizationStatus must be .authorized INFocusStatusCenter.default.focusStatus.isFocused INShareFocusStatusIntent (launches Intent Extension whenever Focus is enabled or disabled) extension IntentHandler: INShareFocusStatusIntentHandling { func handle(intent: INShareFocusStatusIntent, completion: @escaping (INShareFocusStatusIntentResponse) -> Void) { /// Check if Focus is enabled. if intent.focusStatus?.isFocused == true { /// Focus is enabled } /// P
Topic: App & System Services SubTopic: General Tags:
Jun ’21
IB Designables Failed to render and update auto layout status for ViewController
Hello all, IB Designables Failed to render and update auto layout status for ViewController After updating to XCode 12.1 I get this error every time I open Main.storyboard. I have 3 custom view classes for UIButton, UITextField, UITextView, etc. Tried to update pods and I've deleted DerivedData folder but that didn't fix the issue. What could I do in order to overcome this stubborn issue? Thanks in advance!
13
0
21k
Nov ’20
Reply to URLSession-URLCache behavior
Hi Matt,Sorry, but I'm not in control of the server to try changing anything server side.You can see in screenshots of the headers for request 1 and 2 - https://github.com/njarecha/URLCacheBug/blob/master/README.md, there are two additional headers `if-none-match` and `if-modified-since` for reqeust 2 which seems to be added based on cachePolicy by URLSession before sending request. The server is just honoring the provided headers and respond with status code `304`. So the question is why these headers are added to reqeust even though second request's HTTPbody is different than first request?Regards,Nimesh
May ’20
Reply to Reponse in blank by "https://api.storekit-sandbox.itunes.apple.com/inApps/v1/subscriptions" in spite of passing valid transactionId
The API is returning: HTTP Status Code: 401 Response: Unauthenticated Request ID: 7R5JMGYTCFTGWHBZYCS5FLJF4Y.0.0. This is due to invalid JWT. But we are creating the JWT according to the rule of Apple. So why it is showing 401? Our code is: $endpoint = https://api.storekit-sandbox.itunes.apple.com/inApps/v1/subscriptions/2000000636560504; $curl = curl_init($endpoint); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, [ 'Authorization: Bearer ' . $jwt, 'Content-Type: application/json' ]); curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); curl_setopt($curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); $response = curl_exec($curl); // Check for any cURL errors if (curl_errno($curl)) { echo 'Error:' . curl_error($curl); } else { $http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE); echo HTTP Status Code: . $http_code . PHP_EOL; // Check if the response is empty or not if (empty(
Topic: App & System Services SubTopic: StoreKit Tags:
Sep ’24
App Store Connect API : Status code 403 on endpoint /v1/salesReports
I’ve been using this code to get automate download units every day for couple months but it’s not working since 22 Dec 2024 until now. It turns out Failed to retrieve sales report - status code 403 with open(private_key_path, 'r') as key_file: private_key = key_file.read() current_time = int(time.time()) payload = { 'iss': issuer_id, 'exp': current_time + 60 * 10, # Token valid for 10 minutes 'aud': 'appstoreconnect-v1' } headers = { 'alg': 'ES256', 'kid': key_id, 'typ': 'JWT' } token = jwt.encode(payload, private_key, algorithm='ES256', headers=headers) print(fGenerated JWT Token: {token}) return token # API Request setup url = https://api.appstoreconnect.apple.com/v1/salesReports headers = {Authorization: fBearer {token}} params = { filter[reportType]: SALES, filter[reportSubType]: SUMMARY, filter[vendorNumber]: VENDOR_NUMBER, filter[frequency]: DAILY, filter[reportDate]: report_date } try: response = requests.get(url, headers=headers, params=params, tim
0
0
403
Jan ’25
Failed to staple your application with code: 65
I am trying to package a Mac Electron app using Electron Forge capabilities. Code signing works fine, but there is a problem with notarising. I get Finalizing package Failed to staple your application with code: 65. The notarize component of my forge.config.js is: osxNotarize: { tool: 'notarytool', appBundleId: 'com.ImmersiveDSP.ImmerGo-StudioLive', appleId: process.env.APPLE_ID, appleIdPassword: process.env.APPLE_PASSWORD, teamId: process.env.APPLE_TEAM_ID, } I provide my Apple ID and the app password in a terminal message together with npm run make. This worked in May this year, but now not. In a JSON response, I do get reason = Record not found. Anyone else had this issue and resolved it? Is there a way that I can view my notarize requests and see what the issue is?
2
0
2.1k
Nov ’23
HTTP Request every hour
Hello, I'm trying to complete my project for iOS. My application consist in a webview that show pages from my remote server. The application should manage barber bookings. All is working good, but I want that the user must recive a notification when in the current day it has an appointment.func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { let settings = UIUserNotificationSettings(forTypes: UIUserNotificationType([.Alert, .Badge, .Sound]),categories: nil) application.registerUserNotificationSettings(settings); / UIApplication.sharedApplication().setMinimumBackgroundFetchInterval(UIApplicationBackgroundFetchIntervalMinimum) return true } func application(application: UIApplication, performFetchWithCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) { print(Complete); notifcationSystem(); completionHandler(UIBackgroundFetchResult.NewData) }Here is how I handled background fetch, but it seems that it don't work alw
1
0
542
Mar ’16
Reply to WidgetKit Not running in iOS 14/15 (FBSOpenApplicationServiceErrorDomain)
I'm encountering the same issue when trying to launch on iOS 15. I receive the following error message: SendProcessControlEvent:toPid: encountered an error: Error Domain=com.apple.dt.deviceprocesscontrolservice Code=8 Failed to show Widget 'xxxx.xxxx.xxxx.widget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=5 The request to open com.apple.springboard failed. UserInfo={NSLocalizedDescription=The request to open com.apple.springboard failed., NSLocalizedFailureReason=Unexpected error type., NSUnderlyingError=0x10522ba50 {Error Domain=BSServiceConnectionErrorDomain Code=3 XPC error received on message reply handler UserInfo={BSErrorCodeDescription=OperationFailed, NSLocalizedFailureReason=XPC error received on message reply handler}}, BSErrorCodeDescription=InvalidResponse}. UserInfo={NSLocalizedDescription=Failed to show Widget 'xxxx.xxxx.xxxx.widget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code
Topic: App & System Services SubTopic: General Tags:
Sep ’24
failed with exit code 255
After updating my MacBook to HighSierra and my iPhone to iOS 11.1.1 an app doesn't build anymore. It still builds in the simulator.I get the following error:Command /Applications/Xcode.app/Contents/Developer/usr/bin/ibtool failed with exit code 255Does anyone have an idea how to solve this?Thanks!
0
0
1.8k
Nov ’17