Search results for

Request failed with http status code 503

190,719 results found

Post

Replies

Boosts

Views

Activity

Apple Search Ads - 503 service unavailable error on fetching “acls” endpoint.
Hi team, Kirill Zharskii from Fivetran engineering team is here with a question related to Search Ads API. Several of our connectors are facing an issue trying to fetch acls endpoint: curl -X GET -H 'Accept: application/json' -H 'Content-Type: application/json' -H 'Authorization: Bearer ' -H 'X-AP-Context: orgId=null' -A 'Jersey/2.45' 'https://api.searchads.apple.com/api/v5/acls?limit=1000&offset=0' the response is 503 service unavailable, but the request for token works fine. the issue started about 12 hours ago and going on. could you please share some input? TIA
0
0
170
Aug ’25
Code Signing, Evaluation Status, Invalid Extended Key Usage
Hi We are trying to Code sign an application from a server over SSH. We get this error from the Server: Failed to generate branded installation software: Codesigning frameworks: Running remote command: Process exited with status 1, SoftPlan-Backup.app: errSecInternalComponent In subcomponent: /private/var/folders/79/1kz2lffs31q71fhvbpckfk4r0000gn/T/tmp.6YmYqfJg/SoftPlan-Backup.app/Contents/MacOS/backup-tool Remote codesign process failure (0) When I try to Evaluate the Developer ID Installer Certificate i get Evaluation Status: Invalid Extended Key Usage. Certificate Status Good. I do not get this error with Developer ID Application certificate. Any ideas what might be wrong?
1
0
1.5k
Jan ’22
Reply to URLSession errors
Why are status codes like 400/500 not presented in the Error? object of the completionHandler? The URLSession API draws a strict line between: Transport errors, that is, errors getting your request too the server or getting the response backServer-side errors, that is, the HTTP status code in the response from the serverThe main reason for this is that the interpretation of server errors can be server specific, and that makes things hard for a generic HTTP client, like URLSession, that has to work with all servers. If this setup is inconvenient to you, it’s quite straightforward to add your own wrapper to make things easier. For example, pasted in below is an extension on URLSession that treats anything except 200...299 as an error. Note This code uses the Swift 5 Result type, and thus requires Xcode 10.2 beta. If you need Swift 4 compatibility, you can use your own Result type (or the one from your favourite third-party library). Is ther
Feb ’19
Reply to 403 Forbidden error
I’m seeing the same issue when calling the API to search certificates. The response looks like this: { status: 403, code: FORBIDDEN_ERROR, title: This request is forbidden for security reasons, detail: Unable to find a team with the given Content Provider ID 'xxxxxxxxx' to which you belong. Please contact Apple Developer Program Support. https://developer.apple.com/support } Has anyone resolved this ?
Sep ’25
"SecStaticCodeCheckValidity" failed due to unable to verify the signature on the code.
Hey, the SecStaticCodeCheckValidity function is failing with error code status=-67050. It looks like due to unable to obtains and verify the signature of the specified code object. This API was working fine for Notarized packages but recently it started failing. Any suggestion on this will be highly appreciable.
1
0
885
Nov ’22
Reply to Entitlement issues with network extension
Lucky, people I am struggling over 1,5 year with code signing not working for not-paying dev accounts (and even Apple support cannot help maybe they are afraid to admt they no longer allow testing app od device for non-paid accounts). That being said on Monterey I always see during run Failed retrieving MusicKit tokens: Error Domain=ICErrorDomain Code=-7009 Failed to retrieve bundle identifier of the requesting application. The requesting application is likely missing the com.apple.application-identifier entitlement. UserInfo={NSDebugDescription=Failed to retrieve bundle identifier of the requesting application. The requesting application is likely missing the com.apple.application-identifier entitlement.}. Throwing .permissionDenied. 2022-08-10 19:37:12.939452+0200 ConMusic[3082:33162] [DataRequesting] Failed retrieving tokens for MusicDataRequest.Context(url: https://api.music.apple.com/v1/catalog/us/artists/1
Topic: App & System Services SubTopic: Drivers Tags:
Aug ’22
POST request failing only when app goes in to background.
I'm trying to troubleshoot what is going on with my app. The app works just fine when the user is logged in. It's able to post data to my REST API just fine. But when the app goes in to the background, the BGAppRefreshTask fires off just fine, but it's unable to post its data. There payload is super small a two keys and two short strings and thats it. I've tried searching on kCFStreamErrorCodeKey -2103 and ErrorDomainKey 4 but not much comes up. Here is my error with the URL string altered... Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={_kCFStreamErrorCodeKey=-2103, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <3126EFA1-00D3-4423-A31B-D40AB900292D>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=( LocalDataTask <3126EFA1-00D3-4423-A31B-D40AB900292D>.<1> ), NSLocalizedDescription=The request timed out., NSErrorFailingURLStringKey=https://my.example.com/myapi/v1/device, NSErrorFailingURLKey=https://my.examp
2
0
346
Oct ’24
What happens if apple-app-site-association request failed?
When app installed from app store, iOS requests apple-app-site-association file for very first time, as I know.But if the server was down at that time, iOS will fail to obtain apple-app-site-association file.My question is, when iOS will retry to download that file under that situation.I confirmed that, 1) When App Installed or 2) When device rebootiOS requests apple-app-site-association file, but I expect that more circumstances exsists.Is there anyone who knows?
1
0
2.2k
Oct ’15
Reply to Java app camera access
I find myself in the same situation. I access the webcam with opencv but now opencv throws me the error:OpenCV: not authorized to capture video (status 0), requesting... OpenCV: can not spin main run loop from other thread, set OPENCV_AVFOUNDATION_SKIP_AUTH=1 to disable authorization request and perform it in your application. OpenCV: camera failed to properly initialize!I don't know how to request permissions from a .jarDid you find a solution?
Topic: App & System Services SubTopic: Core OS Tags:
Jan ’20
Reply to Problem notarizing .dmg file with macOS app bundle: "The staple and validate action failed! Error 65"
Error 65 means that stapler was unable to find a ticket to staple to your item. That’s because your notarisation request failed, as indicated by the status: Invalid result. You should fetch the notary log and find out why it failed. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Feb ’23