How to access HTTPS URL with self-signed certificate on Tizen TV

Original Created May 31, 2018 | Regeneration Apr 22, 2026

I developed a web application for Tizen TV (versions 3.0/4.0) that needs to communicate with a server using HTTPS. The connection fails with the following error:

POST https://xxxxxxxxxxx.net:8443/clientapplication.net::ERR_INSECURE_RESPONSE

The server uses a self-signed certificate. The connection works fine with HTTP, but fails with HTTPS.

I suspect I need to add the CA certificate to Tizen's trust list or configure the web engine to accept self-signed certificates. Are there any other solutions to this problem?

Problem Understanding

The issue occurs when trying to establish a secure HTTPS connection from a Tizen TV web application to a server using a self-signed certificate. By default, Tizen's web engine rejects self-signed certificates for security reasons.

Solution Methods

  1. Add Internet Privilege and Access Policy Ensure your config.xml includes the necessary privileges:

    <tizen:privilege name="http://tizen.org/privilege/internet"/>
    <access origin="*" subdomains="true"/>
    
  2. Handle Self-Signed Certificates For development purposes, you can configure your application to accept self-signed certificates:

    • For web applications: Use the tizen:allow-navigation element in config.xml
    • For native applications: Implement certificate pinning or custom certificate validation
  3. Proper Certificate Installation For production environments, consider:

    • Obtaining a certificate from a trusted CA
    • Properly installing the certificate on your server
    • Ensuring the certificate chain is complete

Code Examples

For web applications, add this to your config.xml:

<tizen:setting allow-navigation="*" />
<tizen:privilege name="http://tizen.org/privilege/internet"/>
<access origin="*" subdomains="true"/>

Additional Tips

  • For production applications, avoid using self-signed certificates
  • Test your application with valid certificates before deployment
  • Consider using Let's Encrypt for free trusted certificates
  • Review Samsung's documentation on secure communications for Tizen TV

Customize your cookie preferences

You can enable or disable non-essential cookies. Essential cookies are always on to ensure the site works properly and to keep you signed in.

Necessary

These cookies are necessary for the website to function properly and cannot be switched off. They help with things like logging in and setting your privacy preferences.

Always on

Analytics

These cookies help us improve the site by tracking which pages are most popular and how visitors move around the site.

Enable analytics cookies
Public Forum Public Forum
Employees only. Please sign in with your company account.