Search results for

We are unable to process your request

69,635 results found

Post

Replies

Boosts

Views

Activity

Unrecoverable error. SecurityAgent was unable to create requested mechanism
I'm writing an Authorization Plugin (herein called Othello) following the old and new documentation as best I can. It is meant to be run at Login after FileVault opens up as a mechanism in system.login.console but I am testing it by adding its own right in the Authorization database and a command line test app that attempts to obtain this temporary right. The error message that pops up is the same though: Relevant console log entries are attached. Auth Plugin Loading Unrecoverable Error Console.log There are a few interesting hints in the log, but I can't find much toward resolving any of them: Do Auth Plugins have to be signed by the same team as SecurityAgentHelper? (Can't be...) How is the MechanismCreate function even being called if the bundle can't be loaded? Why is MechanismCreate's AuthorizationPluginRef inPlugin parameter apparently some sort of String instead of an AuthorizationPluginRef? Here is the temporary right definition I installed with security authorizationdb write othello.login: Othello.lo
1
0
1.2k
Jul ’22
Reply to Error Analyzing App Version
I experience same issues, looks like it has something to do with multiple accounts connected with xCode, and build processing prior to export. I also have similar issues with xcode build automation this morning, when trying to export Error Domain=ITunesSoftwareServiceErrorDomain Code=-19211 The request rate limit has been reached.: We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again. UserInfo={status=429, code=RATE_LIMIT_EXCEEDED, title=The request rate limit has been reached., detail=We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again., NSLocalizedDescription=The request rate limit has been reached.: We’ve received too many API requests for this API key in the past 60 seconds. Please wait and try again., NSLocalizedFailureReason=Unable to perform upload.}
May ’22
Reply to iTunes Connect Localizations Broken -> cannot submit new app versions!
Thanks for the post, because we have a similar problem. When we click one of our apps in iTunes Connect it says 'Unable to Process Request'. We have already been in contact with Apple Support, but did know about this problem until know and I can share that with Apple support too. I also just found out that our apps were not visible in the app store as well. We have this problem since July 28, before the iTunes Connect down time.
Jul ’15
Reply to Export Certificate from Keychain in .p12 file format
thank you for your input, eskimo. We dont create the certificate signing requests ourselves. From our partners Dashboard we get two files: the first pair of the Payment Processing Certificate and the Merchant Identity Certificate. These files are then uploaded to our Apple Developer Account and then give us the final certificates to download: apple_pay.cer and merchant_id.cer Both of these files are added to the Keychain but we are still unable to export it in .p12 Shouldnt the private key already be included in the csr?
Jan ’22
Reply to Live Caller ID Extension - timeout connecting to PIRService
@Apple I can now enable Live Caller ID in Settings and the OS isn't churning out any errors while doing so. However when a call is made to the handset, I see see the OS is doing a lookup to the PIRService, but its timing out: error = Error Domain=com.apple.CipherML Code=400 Error Domain=com.apple.CipherML Code=401 Unable to request data by keywords batch: The request timed out. UserInfo={NSLocalizedDescription=Unable to request data by keywords batch: The request timed out., NSUnderlyingError=0x8b4290a80 {Error Domain=NSURLErrorDomain Code=-1001 The request timed out. UserInfo={NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=http://192.168.1.100:8080/.well-known/private-token-issuer-directory}}}: The request timed out. UserInfo={NSLocalizedDescription=Error Domain=com.apple.CipherML Code=401 Unable to request data by keywords batch: The request timed out. UserInfo={NSLocalizedDescrip
Topic: App & System Services SubTopic: General Tags:
Jul ’24
RevenueCat paywall and apple review process unable to progress through paywall
I submitted for the first time my app and in app subscription together. do the subscriptions get approved separately? it seems like a loop. in the paywall of my app only for apple its failing to load payments/subscription info which im assuming to be the fact that my in app subscription didn't get approved yet, its currently waiting for review (first time submitting subscription). Meanwhile the app gets rejected multiple times because the reviewer can't seem to go beyond the paywall due to failure to load payments. Is this the similar experience anyone had? Do you have info that'd be helpful to give to the reviewers?
1
0
93
May ’25
Unable to get name and email in the ID Token even when they are requested in the scope
I have setup Login with Apple in my .Net Core Razor Pages app (.Net 5) which is using Microsoft Identity Framework for user management. I followed this tutorial of Scott which helped me as far as the Apple Login page. But after the successful login when the Call-Back endpoint is called, I am getting null in the _signInManager.GetExternalLoginInfoAsync() method call. My initial research suggested that the ID Token may not contain required data. Which is correct because the ID Token returned by the Apple does not contain email or name even though it is requested in the scope. Sample request:https://appleid.apple.com/auth/authorize?client_id=net.demo.client&redirect_uri=https%3A%2F%2Fdemo.website.net%2Fsignin-apple&response_type=code%20id_token&scope=email%20name&response_mode=form_post&nonce=637679-omitted Here's the Authentication setup called from Startup.ConfigureServices() method: IdentityModelEventSource.ShowPII = true; services.AddAuthentication(options => { //options.Defau
1
0
1.6k
Sep ’21
Reply to Help Needed: Error Codes in VCPHumanPoseImageRequest.mm[85] and NSArrayM insertObject
Thanks for the fast reply! We have built this into a camera output delegate, for real-time performance improvements (or attempting to), depending on the user request, certain pose requests are added. This is not crucial to the app, but it is something we'd like to implement, so any help is really appreciated! From our initial troubleshooting, this is the code causing the problem: public func captureOutput(_ output: AVCaptureOutput, didOutput sampleBuffer: CMSampleBuffer, from connection: AVCaptureConnection) { let imageRequestHandler = VNImageRequestHandler(cmSampleBuffer: sampleBuffer, orientation: .up) var requests: [VNRequest] = [] if self.selectedRequests.hand { let handPoseRequest = VNDetectHumanHandPoseRequest() requests.append(handPoseRequest) } if self.selectedRequests.body { let bodyPoseRequest = VNDetectHumanBodyPoseRequest() requests.append(bodyPoseRequest) } if self.selectedRequests.face { let faceRequest = VNDetectFaceLandmarksRequest() requests.append(faceRequest) } va
Topic: Machine Learning & AI SubTopic: Core ML Tags:
Jul ’24
Reply to WidgetKit + HealthKit Authorization
Update: Digging a little deeper, I now see more information about the error. This is... disheartening. Error Domain=com.apple.healthkit Code=111 Unable to prompt for authorization using this type of extension; ignoring request. UserInfo={NSLocalizedDescription=Unable to prompt for authorization using this type of extension; ignoring request.} Is there any way to read HealthKit data from within a Widget?
Topic: App & System Services SubTopic: General Tags:
Jul ’20