Search results for

“Request failed with http status code 503”

201,018 results found

Post

Replies

Boosts

Views

Activity

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
Failed to create Apple Pay session: 400 Bad Request
We are using apple pay on the Web. But we are getting this error as below while creating the session from our API - {error: Failed to create Apple Pay session: 400 Bad Request: [{ statusMessage: Payment Services Exception merchantId=2BA8AF828D93E74EC76655D09C9132B7445BA789D674E970873CCCD85E5A8A5E not registered for domain=https://applepay-dev.ippay.com, statusCode: 400 }]} ==================================================== Please use the following Curl request to generate the error. curl --location 'https://applepay-dev.ippay.com/api/v2/payment/alternatepay/session/create' --header 'Content-Type: application/json' --header 'Accept: /' --header 'Sec-Fetch-Site: same-origin' --header 'Accept-Language: en-US,en;q=0.9' --header 'Accept-Encoding: gzip, deflate, br' --header 'Sec-Fetch-Mode: cors' --header 'Host: applepay-dev.ippay.com' --header 'Origin: https://applepay-dev.ippay.com' --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Apple
0
0
253
Jul ’25
MessagesExtension failed with error code -15. What is it?
When I test my MessagesExtension ,this error come upfisrt i add code in MessagesViewController like: override func viewDidLoad() { super.viewDidLoad() let stickerView = MSStickerBrowserView(frame: self.view.frame, stickerSize: MSStickerSize.large) stickerView.dataSource = self self.view.addSubview(stickerView) }then add MSStickerBrowserViewDataSource delegate methods: func numberOfStickers(in stickerBrowserView: MSStickerBrowserView) -> Int { return 1 } func stickerBrowserView(_ stickerBrowserView: MSStickerBrowserView, stickerAt index: Int) -> MSSticker { if let imageURL = URL(string: Bundle.main().pathForResource(3, ofType: png)!) { do { let sticker = try MSSticker(contentsOfFileURL: imageURL, localizedDescription: image) as MSSticker let _ = sticker.imageFileURL return sticker } catch _ { print(error) } } return try! MSSticker(contentsOfFileURL: URL(string: http://p0.meituan.net/320.0.a/deal/__41839401__1277258.jpg)!, localizedDescription: baidu) }when i debug step-to-step , all my
1
0
436
Jun ’16
I requested "DirverKit UserClient Access" Entitlement, But I Distribute App failed.
I requested DirverKit UserClient Access Entitlement, But I Distribute App failed. I don't know the reason. I think when I request DirverKit UserClient Access I make a mistake. I fill in two Bundle ids in the Request a System Extension or DriverKit Entitlement form's UserClient Bundle IDs item. The reason is when I Add DirverKit UserClient Access Capability in the project of Xcode. The .entitlements file is like this: com.turing.TuringTouch com.turing.TuringTouch.TouchDriver But in Signing of Xcode's Bundle Identifier can fill in only on Identifier therefore they do not match. So I can't Distribute App. I reapply DirverKit UserClient Access Entitlement. But decline. The result is decline. Please help me. Please tell me, how should can I do now? Thank you very much.
3
0
375
Apr ’26
Network extension - Blocking an https request on Safari and Chrome
Hi, I am trying to write an app for macOS which will allow or drop a potential upload request, e.g. PUT or PATCH http request. For example, I would like to block uploading of a file to Google drive. I was looking into the 'SimpleFireWall' app sample provided within (https://developer.apple.com/videos/play/wwdc2019/714) but AFAIU this cannot be done due to limitations of NEFilterDataProvider and its flow (NEFilterFlow) objects, i.e. one limitation is that this would only be supported on Safari (WebKit based browsers) and secondly there is no option to peek and analyze which http request is represented by the flow in case of a TLS connection (HTTPS) as data is obviously encrypted. What would be the recommended way of achieving this? Thanks, Doron.
2
0
883
Feb ’23
Reply to Desktop Widget can not be found in Widget Center
SendProcessControlEvent:toPid: encountered an error: Error Domain=com.apple.dt.deviceprocesscontrolservice Code=8 Failed to show Widget 'com.jiduauto.iphone.jdcomiphoneWidget' 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=0x600001ae0c90 {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 'com.jiduauto.iphone.jdcomiphoneWidget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=5 The request to open com.apple.springboard failed
Topic: App & System Services SubTopic: General Tags:
Feb ’24
error: exportArchive: Code signing "FBAEMKit.framework" failed.
When I make ipa by commond tools,Some errors have occurred.Has anyone encountered it before? Ps:debug mode is ok,release mode is not ok. error: exportArchive: Code signing FBAEMKit.framework failed. Error Domain=IDEDistributionPipelineErrorDomain Code=0 Code signing FBAEMKit.framework failed. UserInfo={NSLocalizedDescription=Code signing FBAEMKit.framework failed., NSLocalizedRecoverySuggestion=View distribution logs for more information.}
Topic: Code Signing SubTopic: General
1
0
551
Sep ’24
AudioOutputUnitStart fail with return code 561145187
Our app invoke the method AudioOutputUnitStart in the foreground, and frequently return the error AVAudioSessionErrorCodeCannotStartRecording, also when appear the problem, the background no app running, the problem more often occured on the device iPad 8 wifi + iOS 14.6, what is the reason and how to debug it. Thanks! OSStatus status = AudioOutputUnitStart(recordUnit); if (status!=noErr) { status = 561145187 }
3
0
1.7k
Jul ’21
Status code 21002 whenever I try to validate IAP
Hello, I'm working on non-consumable IAP's and when I try to validate a receipt, I always get this status code 21002, which means my receipt-data property was malformed or missing. But I've been doing exactly how I saw on apple's documentation. What am I missing? guard let receiptFileURL = Bundle.main.appStoreReceiptURL, FileManager.default.fileExists(atPath: receiptFileURL.path) else { return } let receiptData = try? Data(contentsOf: receiptFileURL, options: .alwaysMapped) guard receiptData != nil else { UserDefaults.standard.set(false, forKey: isSubscribed) return } var recieptString = receiptData?.base64EncodedString() ?? let jsonDict : [String : Any] = [receipt-data : recieptString, password : Constants.ConstantValues.autoRenewableReceitPassword.rawValue, exclude-old-transactions : false] let httpBody = try? JSONSerialization.data(withJSONObject: jsonDict, options: []) let storeURL = URL(string: Constants.ConstantValues.verifyReceiptSandboxURL.rawValue)! var storeRequest = URLRequest(ur
2
0
10k
Feb ’21
Reply to WatchOS 2 b2 - Xcode b2 "no symbols for paired Apple Watch"
I have a simmilar problem.When I connect my iPhone, Xcode has a status line saying it is installing the symbols for the Watch.The text then disappears and my iPhone becomes inaligible for debuging WatchKit extentions due to lack of symbols(iPhone 5s with iOS 9 - Beta 2 , Xcode 7 - Beta 2, Watch OS 2.0 - 13S5255d)I decided to run Xcode from command line for possible error traces. It seems that my Xcode is unable to download and mount a file called 'Watch1_1_13S5255d.dmg'. First URL returns 404 and the second URL which is done with my (Admin) team accounts fails with 403.Perhaps you should too open terminal, run/Applications/Xcode-beta.app/Contents/MacOS/Xcodethen connect your device and see the tracesBelow is a trace from my Xcode:2015-06-24 14:03:47.849 Xcode[28881:241044] Unable to mount DeveloperDiskImage on Doron's Apple Watch 2015-06-24 14:03:51.189 Xcode[28881:241027] Unable to mount DeveloperDiskImage on Doron's Apple Watch 2015-06-24 14:03:54.494 Xcode[28881:241047] DVTDownloadable: D
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’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 } } ] }
Replies
Boosts
Views
Activity
Dec ’21
Reply to Apple Developer Membership Renewal Stuck at 503 Error
Same here. 503 error for purchasing developer program for my organization developer account.
Replies
Boosts
Views
Activity
Feb ’26
Reply to Unable to Submit for Review
I scratched my head until I opened my inspect element and checked the network request to find the response of the failed request. It gives a detailed error JSON. add https here to see the screenshot: ibb.co/J3Pxp7T
Replies
Boosts
Views
Activity
Sep ’20
Failed to create Apple Pay session: 400 Bad Request
We are using apple pay on the Web. But we are getting this error as below while creating the session from our API - {error: Failed to create Apple Pay session: 400 Bad Request: [{ statusMessage: Payment Services Exception merchantId=2BA8AF828D93E74EC76655D09C9132B7445BA789D674E970873CCCD85E5A8A5E not registered for domain=https://applepay-dev.ippay.com, statusCode: 400 }]} ==================================================== Please use the following Curl request to generate the error. curl --location 'https://applepay-dev.ippay.com/api/v2/payment/alternatepay/session/create' --header 'Content-Type: application/json' --header 'Accept: /' --header 'Sec-Fetch-Site: same-origin' --header 'Accept-Language: en-US,en;q=0.9' --header 'Accept-Encoding: gzip, deflate, br' --header 'Sec-Fetch-Mode: cors' --header 'Host: applepay-dev.ippay.com' --header 'Origin: https://applepay-dev.ippay.com' --header 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Apple
Replies
0
Boosts
0
Views
253
Activity
Jul ’25
MessagesExtension failed with error code -15. What is it?
When I test my MessagesExtension ,this error come upfisrt i add code in MessagesViewController like: override func viewDidLoad() { super.viewDidLoad() let stickerView = MSStickerBrowserView(frame: self.view.frame, stickerSize: MSStickerSize.large) stickerView.dataSource = self self.view.addSubview(stickerView) }then add MSStickerBrowserViewDataSource delegate methods: func numberOfStickers(in stickerBrowserView: MSStickerBrowserView) -> Int { return 1 } func stickerBrowserView(_ stickerBrowserView: MSStickerBrowserView, stickerAt index: Int) -> MSSticker { if let imageURL = URL(string: Bundle.main().pathForResource(3, ofType: png)!) { do { let sticker = try MSSticker(contentsOfFileURL: imageURL, localizedDescription: image) as MSSticker let _ = sticker.imageFileURL return sticker } catch _ { print(error) } } return try! MSSticker(contentsOfFileURL: URL(string: http://p0.meituan.net/320.0.a/deal/__41839401__1277258.jpg)!, localizedDescription: baidu) }when i debug step-to-step , all my
Replies
1
Boosts
0
Views
436
Activity
Jun ’16
I requested "DirverKit UserClient Access" Entitlement, But I Distribute App failed.
I requested DirverKit UserClient Access Entitlement, But I Distribute App failed. I don't know the reason. I think when I request DirverKit UserClient Access I make a mistake. I fill in two Bundle ids in the Request a System Extension or DriverKit Entitlement form's UserClient Bundle IDs item. The reason is when I Add DirverKit UserClient Access Capability in the project of Xcode. The .entitlements file is like this: com.turing.TuringTouch com.turing.TuringTouch.TouchDriver But in Signing of Xcode's Bundle Identifier can fill in only on Identifier therefore they do not match. So I can't Distribute App. I reapply DirverKit UserClient Access Entitlement. But decline. The result is decline. Please help me. Please tell me, how should can I do now? Thank you very much.
Replies
3
Boosts
0
Views
375
Activity
Apr ’26
Network extension - Blocking an https request on Safari and Chrome
Hi, I am trying to write an app for macOS which will allow or drop a potential upload request, e.g. PUT or PATCH http request. For example, I would like to block uploading of a file to Google drive. I was looking into the 'SimpleFireWall' app sample provided within (https://developer.apple.com/videos/play/wwdc2019/714) but AFAIU this cannot be done due to limitations of NEFilterDataProvider and its flow (NEFilterFlow) objects, i.e. one limitation is that this would only be supported on Safari (WebKit based browsers) and secondly there is no option to peek and analyze which http request is represented by the flow in case of a TLS connection (HTTPS) as data is obviously encrypted. What would be the recommended way of achieving this? Thanks, Doron.
Replies
2
Boosts
0
Views
883
Activity
Feb ’23
Reply to Desktop Widget can not be found in Widget Center
SendProcessControlEvent:toPid: encountered an error: Error Domain=com.apple.dt.deviceprocesscontrolservice Code=8 Failed to show Widget 'com.jiduauto.iphone.jdcomiphoneWidget' 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=0x600001ae0c90 {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 'com.jiduauto.iphone.jdcomiphoneWidget' error: Error Domain=FBSOpenApplicationServiceErrorDomain Code=5 The request to open com.apple.springboard failed
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’24
error: exportArchive: Code signing "FBAEMKit.framework" failed.
When I make ipa by commond tools,Some errors have occurred.Has anyone encountered it before? Ps:debug mode is ok,release mode is not ok. error: exportArchive: Code signing FBAEMKit.framework failed. Error Domain=IDEDistributionPipelineErrorDomain Code=0 Code signing FBAEMKit.framework failed. UserInfo={NSLocalizedDescription=Code signing FBAEMKit.framework failed., NSLocalizedRecoverySuggestion=View distribution logs for more information.}
Topic: Code Signing SubTopic: General
Replies
1
Boosts
0
Views
551
Activity
Sep ’24
Failed to verify code signature of ipa,
Failed to verify code signature of ipa, if i tried to install one app, i thought it could be either a certificate or provisioning profile issue but if i install another app this app is being installed without any error.what could be the issue.?
Replies
0
Boosts
0
Views
1.7k
Activity
Aug ’16
AudioOutputUnitStart fail with return code 561145187
Our app invoke the method AudioOutputUnitStart in the foreground, and frequently return the error AVAudioSessionErrorCodeCannotStartRecording, also when appear the problem, the background no app running, the problem more often occured on the device iPad 8 wifi + iOS 14.6, what is the reason and how to debug it. Thanks! OSStatus status = AudioOutputUnitStart(recordUnit); if (status!=noErr) { status = 561145187 }
Replies
3
Boosts
0
Views
1.7k
Activity
Jul ’21
Status code 21002 whenever I try to validate IAP
Hello, I'm working on non-consumable IAP's and when I try to validate a receipt, I always get this status code 21002, which means my receipt-data property was malformed or missing. But I've been doing exactly how I saw on apple's documentation. What am I missing? guard let receiptFileURL = Bundle.main.appStoreReceiptURL, FileManager.default.fileExists(atPath: receiptFileURL.path) else { return } let receiptData = try? Data(contentsOf: receiptFileURL, options: .alwaysMapped) guard receiptData != nil else { UserDefaults.standard.set(false, forKey: isSubscribed) return } var recieptString = receiptData?.base64EncodedString() ?? let jsonDict : [String : Any] = [receipt-data : recieptString, password : Constants.ConstantValues.autoRenewableReceitPassword.rawValue, exclude-old-transactions : false] let httpBody = try? JSONSerialization.data(withJSONObject: jsonDict, options: []) let storeURL = URL(string: Constants.ConstantValues.verifyReceiptSandboxURL.rawValue)! var storeRequest = URLRequest(ur
Replies
2
Boosts
0
Views
10k
Activity
Feb ’21
Reply to Apple Watch via iPhone: Failed with HTTP status 403: forbidden
I have the same issue: Apple Watch via iPhone Kvasnetckyi: Failed with HTTP status 403: forbidden IOS 16.1 (Iphone 13), Watch OS 9.1 (Series 5), Xcode 14.0.1. Can anyone help?
Replies
Boosts
Views
Activity
Oct ’22
Reply to "cannot connect to itunes store" in sandbox since this morning
https://developer.apple.com/system-status/However, when I look at the status of the system I linked to, I can see that the green light is on, so Apple has not figured out the problem yet, or is it that we're coding something wrong?Maybe this may be a coding error for all of us.😕
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Mar ’17
Reply to WatchOS 2 b2 - Xcode b2 "no symbols for paired Apple Watch"
I have a simmilar problem.When I connect my iPhone, Xcode has a status line saying it is installing the symbols for the Watch.The text then disappears and my iPhone becomes inaligible for debuging WatchKit extentions due to lack of symbols(iPhone 5s with iOS 9 - Beta 2 , Xcode 7 - Beta 2, Watch OS 2.0 - 13S5255d)I decided to run Xcode from command line for possible error traces. It seems that my Xcode is unable to download and mount a file called 'Watch1_1_13S5255d.dmg'. First URL returns 404 and the second URL which is done with my (Admin) team accounts fails with 403.Perhaps you should too open terminal, run/Applications/Xcode-beta.app/Contents/MacOS/Xcodethen connect your device and see the tracesBelow is a trace from my Xcode:2015-06-24 14:03:47.849 Xcode[28881:241044] Unable to mount DeveloperDiskImage on Doron's Apple Watch 2015-06-24 14:03:51.189 Xcode[28881:241027] Unable to mount DeveloperDiskImage on Doron's Apple Watch 2015-06-24 14:03:54.494 Xcode[28881:241047] DVTDownloadable: D
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15