This error message indicates that the requested resource (probably a website or API) cannot be loaded because the App Transport Security (ATS) policy in the app requires all connections to be made securely over HTTPS.
The ATS policy is a security feature in iOS and macOS that enforces secure network connections by default. It ensures that apps communicate using encrypted connections to protect user data and prevent potential security risks.
To resolve this error, you have a few options:
-
If you are the app developer: Update your app's code or ATS settings to allow connections with non-secure (HTTP) resources. However, this is not recommended unless you have a valid reason to do so, as it might pose a security risk.
-
If you are the app user: Contact the app developer or website administrator and inform them about the issue. They should update their app or server to support secure connections (HTTPS).
-
If you have access to the server hosting the resource: Configure the server to support HTTPS connections. This usually involves obtaining an SSL/TLS certificate and configuring the server to use it.
Keep in mind that using HTTPS is always recommended to protect user data and ensure a secure connection.