Динамически обновлять div-параметры в плагине чата facebook - PullRequest
0 голосов
/ 09 июня 2018

Я хотел бы, как новичок в JavaScript, обновить плагин для чата Facebook с помощью некоторого пользовательского параметра в поле ref (на самом деле это cookie пользователя, которому я показываю плагин).Я не могу переопределить значение по умолчанию, которое я установил.Это почему?Я застрял на этом навсегда.Я всегда получаю параметр ref default_ref.

. Любая помощь будет оценена.Спасибо

<!DOCTYPE html>
<head>
</head>
<script>
    function updateRef(){
        console.log("updating ref");
        document.getElementById("chat").ref="update_ref";
        console.log("tried to update ref;")
    }

window.fbAsyncInit = function() {
    FB.init({
      appId            : 'xxxxxxxx',
      autoLogAppEvents : true,
      xfbml            : true,
      version          : 'v3.0'
    });
  };

  (function(d, s, id){
     var js, fjs = d.getElementsByTagName(s)[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement(s); js.id = id;
     js.src = "https://connect.facebook.net/cs_CZ/sdk.js";
     fjs.parentNode.insertBefore(js, fjs);
   }(document, 'script', 'facebook-jssdk'));


    console.log("customer chatloading");
    document.getElementById("chat").ref = "test_work_please";
    console.log("finished loading chat");
    console.log("ref is " + document.getElementById("chat").ref);
</script>
<body>


<div id="chat" class="fb-customerchat"
messenger_app_id="xxxxxxxxxx"
logged_in_greeting="yyyyyyy
logged_out_greeting="zzzzz"
greeting_dialog_display="fade"
ref="default_ref"
page_id="xxxxxxxxxxxx">
</div>

</body>
...