使用javascript函数编写客户端ID是否安全?

时间:2019-05-02 15:27:36

标签: login-with-amazon

在链接https://developer.amazon.com/docs/login-with-amazon/install-sdk-javascript.html中,将CLIENT-ID放在javascript文件中(该代码将用于我在Amazon库中的登录名),我想了解将client-id放在javascript文件中是否安全,因为它可以被任何人看到。 链接中的代码粘贴在下面。

这是我正在创建的网站,我想在其中使用“使用亚马逊登录”。

window.onAmazonLoginReady = function() {
  amazon.Login.setClientId('YOUR-CLIENT-ID');//should be replaced by 
                                             //original client id
};
(function(d) {
  var a = d.createElement('script'); a.type = 'text/javascript';
  a.async = true; a.id = 'amazon-login-sdk';
  a.src = 'https://assets.loginwithamazon.com/sdk/na/login1.js';
  d.getElementById('amazon-root').appendChild(a);
})(document);

0 个答案:

没有答案