언어 설정

Menu
Sites
Language
Unacceptable TLS certificate

Hello,

We are developing Tizen SDK web application on Samsung TV 5 series.
The firmware is the last.

The problem is connecting to our API site: id.aggregion.com (https)
We have the error: "Unacceptable TLS certificate" BUT the certificate is rigth.

What should we have to do to fix it?

Thanks

Responses

1 댓글
Armaan-Ul- Islam

Plese check wheter you added internet access privilege for your Tizen application in the config.xml file or not. Internet Privilege allows the application to access the Internet.

<tizen:privilege name="tizen.org/privilege/internet"/>

Also defining external access Policy may be required to access network. According to the W3C Access Requests Policy (WARP), you cannot access external network resources by default. If you require access to an external network resource, you must request network resource permissions for the Web application using the Policy in the config.xml file. Use '*' for all resource access or specific to your site. 

<access origin="*" subdomains="true"/>
or
<access origin="id.aggregion.com" subdomains="true"/>

Now your application should be able to access the resource, if that is the issue...