We are using Apple's PSSO to federate device login to out own IdP. We have developed our own extension app and deployed it using MDM. Things works fine but there are 2 issues that we are trying to get to the root cause - On some devices after restarting we see an error message on the logic screen saying The registration for this device is invalid and must be repaired And other error message is SmartCard configuration is invalid for this account For the 1st we have figured out that this happens when the registration doesn't happen fully and the key is not tied to the user so when the disk needs to be decrypted at the FileVault screen the issue is raised. For the SmartCard configuration is invalid for this account issue also one aspect is invalid registration but there has been other instances as well where the devices were registered completely but then also the the above error was raised. We verified the registration being completed by checking if the SmartCard is visible in the System Report contain
Search results for
apple pencil battery life
146,130 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hey guys! I've recently noticed a number of PaaS'es and CPaaS'es offering bulk outgoing messaging using the iMessage the same way it's done with the SMS. I always thought that iMessage sort of only allowed businesses to send outgoings subject to user contacting their account first (to avoid being spammed). But then there's those I mentioned above. Have you faced anything like this? Did Apple make changes to the model so that businesses can now initiate conversations with users? If so, how does it work?
Topic:
App & System Services
SubTopic:
General
Hi, we are implementing ID&V and there is a requirement regarding the flow for Apple Pay. In order to clarify the case I will describe the use case scenario or steps to reproduce first: add a card to the iPhone wallet app (yellow path verification required). Do not complete the ID&V process. add a card to the Watch via the Wallet inside the iPhone Watch app (yellow path verification required). Same as before, do not complete the ID&V complete ID&V process using the Issuer App either from iPhone or Watch. the Issuer app receives the application:openURL:options: callback on its AppDelegate. In the options dictionary, we can not see the UIApplicationOpenURLOptionsSourceApplicationKey populated (it is nil). At this moment, for the card we are adding there are now two tokens, both to be verified via ID&V process. One is on the iPhone and one is on the Apple Watch associated with the same iPhone. The url received at step 4 contains the serial number which identifies the digitiz
Hello @crauss77 , Apple’s CONSUMPTION_REQUEST server notification does not include any indication of user consent (customerConsented). That’s by design Apple expects your app, not your server, to collect and confirm the user’s consent before sending consumption data to Apple. Here’s how it’s meant to work 👇 App receives refund request sheet prompt When the user initiates a refund through Apple (for example, via the “Report a Problem” link or refund sheet), Apple sends a CONSUMPTION_REQUEST notification to your server. This is Apple saying: “Please send us details about how this user consumed their purchase.” Your app is responsible for obtaining consent Before your server calls the Consumption API, you must collect the user’s consent within the app. Apple requires that customerConsented = true be included in your API call; otherwise, Apple rejects the request. There is no fallback or assumption Apple will not process a consumpti
Topic:
App & System Services
SubTopic:
StoreKit
Tags:
Hello @a_el_amraoui , @ygx consumptionStatus Some examples of consumption status include the following scenarios: Scenario 1: A user purchases a “bag of 100 coins” in your app and spends all 100 coins. The in-app purchase is considered fully consumed. Scenario 2: If your app has an exchange platform that has bartering, or if your app transferred an in-app purchase from one account to another user’s account, the in-app purchase is considered fully consumed. It’s a numerical value (usually in minutes or hours). playTime It helps Apple understand how much of the app or in-app purchase was consumed. For example: If playTime = 5, it means the user used the app (or specific purchased feature/content) for 5 minutes (or hours, depending on your unit) before refunding. If playTime = 0, it means the customer never used the app or content. Thanks
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect API
Tags:
Hi everyone, My app notarization has been stuck in the “In Progress” state for the past 4 days. Here are the details: createdDate: 2025-10-12T07:56:46.228Z id: 8f8c9a33-1c72-489e-a189-74c797a12fbc name: DevScribe.zip status: In Progress I checked the Apple System Status page and noticed that the Developer Notarization service has been showing an outage since October 8th. Could this ongoing outage be the reason my notarization is stuck? Is anyone else experiencing the same issue? Any guidance or workaround would be greatly appreciated.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Xcode
Mac App Store
Notarization
Developer ID
Apple told me to contact the developer, as they said that they only process payments. On October 6, 2025, I purchased SD, Standard Definition, Episode 1 of The Real Housewives of Potomac for $1.99 [as usual], but when I went to purchase SD Episode 2, it is $2.99. Will upcoming episodes also be $2.99 for Standard Definition episodes? I have been checking for several days, thinking the price issue will be resolved, but SD episode 2 is still $2.99. I haven’t checked other shows for purchases of episodes. Is this price going to be updated, corrected for SD, particularly, for the show mentioned above, to $1.99?
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
Subscriptions
Forums Feedback
App Review
Shortcuts
The Apple Developer Forums are for questions about APIs and features intended specifically for developers. Your question doesn't seem to be API-related, and so I'd suggest that you ask help in the Apple Support Community. Thanks! Best, —— Ziqiao Chen Worldwide Developer Relations.
Topic:
Media Technologies
SubTopic:
Audio
Tags:
Hello, did you ever find a resolution to this? I am building an Apple Watch App and I am also having an issue with background refreshes not being delivered. It can work fine for hours and then just completely stall during charging or entering low power mode and then it never recovers and I have to restart the watch to get it to continue giving me background refreshes.
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
I have reached out to support and they simply tell me they are unable to help me, first redirecting me to generic Apple support, after following up they provided the explanation that they only handle administrative tasks and to post on the forums. I am unable to change my App Tracking Transparency it provides no real error, though network traffic shows a 409 HTTP response from the backend API when trying to save. Here is a screenshot of the result when trying to save. Does anyone have any suggestions on how to get this resolved? I've commented back to the reviewers and they simply provided help documentation. I have a technical issue and am unable to get anyone to help resolve this.
We appreciate your interest in participating in the forums! These forums are for questions about developing software and accessories for Apple platforms. Your question seems related to a consumer feature and is better suited for the Apple Support Communities https://discussions.apple.com/welcome Albert Pascual
Worldwide Developer Relations.
Topic:
App & System Services
SubTopic:
General
Tags:
Hello, As I've been tinkering with the new URL filtering API I've been struggling to create bloom filters. I have been referencing this developer's post heavily: https://developer.apple.com/forums/thread/791352?answerId=851527022#851527022 He suggests that the expected FNV-1a implementation has the multiply and xor operations inverted, while an Apple engineer suggests that this will be updated on the offical iOS26 release (which has already happened). What is the correct FNV-1a implementation? In this sample project (which is from july, so pre-release ios 26): https://developer.apple.com/documentation/networkextension/filtering-traffic-by-url Is the included bloom filter data correct? I can only assume the other developer used this as a reference to then conclude that multiplying and xor-ing should be inverted, so I'm really not sure if this bloom filter bitVectorData here is trustworthy. Is there any reference implementation for this hashing procedure? How do we generate a bloom filter properly and
Thank you for your post. I personally recommend that you sign up for a session with App Review during the weekly Meet with Apple event. https://developer.apple.com/events/view/upcoming-events Sign in with your Developer ID and select Request a one-on-one App Review consultation. A member of the App Review team will help you with your questions regarding the review process and the App Review Guidelines. Hope this is helpful to you. Albert Pascual
Worldwide Developer Relations.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic:
Media Technologies
SubTopic:
Video
Tags:
I am constantly running out of storage on my iPhone 16 Pro. I keep having to move my photos and videos to my laptop and delete them from my phone, and I’m constantly needing to offload apps and manually clear caches in some apps to free up storage. I finally got sick of having this cycle every two weeks so looked into it more closely. I’m finding that iOS consumes 32 GB, and then another system reserve category is consuming an additional 23 GB. Meaning the system reserved files are consuming half of the storage on this phone and effectively making it a 64 GB model. I understand the system will need to consume some capacity for itself and that iOS is getting larger, but nearly 50% of the capacity of the phone is insane. Looking closer into the categories, I’m seeing that iOS has taken it upon itself to also permanently provision 10% of the storage capacity for reserve update space. Already another instance of “why am I having to lose so much of my functional capacity to an occasional process?” but I can unders