1️Plugin Setup

Setup oauth url and other configurations

There are 2 important steps to complete the setup

Step 1: Install Script

Add the below script above </body> tag and replace '<your license key here>' with your license key

<!-- Begin SocialInviter Code -->
    <script>
      (function () {
          function bootSocialInviter(l, c) {
              var d = document, k = 'https://api.socialinviter.com/', t = 'script', h = 'head', 
                  o = d.createElement(t);
              o.src = k + 'taf.js?license='+ l;
              o.id = 'tafscript';
              o.async = true;
              const head = document.getElementsByTagName(h)[0], link = document.createElement("link");
              if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
              head.appendChild(o);
              link.rel = "stylesheet", link.type = "text/css", link.href = k + "taf.css", head.appendChild(link);
          }
          bootSocialInviter('<your license key here>', function () {
              // Load Callback
          });
      })();
    </script>
    <!-- End SocialInviter Code -->

Step 2: Add oauth.html authentication file

Download the below oauth.zip and upload oauth.html to the root folder on your server(domain).

Last updated