Hi @Evaldas
Based on my research, the Office 365 apps do not directly rely on OCSP. Instead, they depend on the Android platform’s TLS/SSL stack and the WebView authentication flow. During this process, certificate validation is handled by the platform, which may include revocation checks through OCSP or CRL as part of the connection.
In addition, I came across a related discussion here: rest - Update to Android 16 (SDK 36) causes CertPathValidatorException with API calls - Stack Overf…
While it references a newer Android version, the behavior described shows a similar pattern where the interaction between OCSP and the SSL handshake can lead to validation failures.
As suggested in that discussion, you may consider running the following command to review the OCSP response details, particularly the “Next Update” timestamp:
openssl s_client -connect yourdomain.com:443 –status
This information is provided as a convenience to you. These sites are not controlled by Microsoft, and Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please ensure that you fully understand the risks before using any suggestions from the above link.
At the moment, if OCSP stapling (TLS Certificate Status Request) is not enabled or supported on your SSO endpoint, you may consider moving toward a more modern approach. For example, using short‑lived certificates or falling back to CRL could be suitable alternatives, depending on how your environment is currently designed.
Additionally, as this forum mainly focuses on break-fix scenarios for Office 365 applications, for more advanced technical discussions I would recommend reaching out to the broader technical community through https://techcommunity.microsoft.com/ and https://github.com/orgs/community/discussions. These platforms often include engineers and partners who have worked through similar scenarios and can share practical insights based on their experience.
I hope this provides some additional insight.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.