How to use System->Access Token->Parameter Name

(from github.com/rdaemen)
Hi,

Created an access token with “role”-permission for selective search results.
How to use the “Parameter name” (defined as at) in e.g. the javascript example:

<script>
  (function() {
    var fess = document.createElement('script');
    fess.type = 'text/javascript';
    fess.async = true;
    fess.src = '//<server>/js/ss/fess-ss.min.js';
    fess.charset = 'utf-8';
    fess.setAttribute('id', 'fess-ss');
    fess.setAttribute('at', '<access token>');
    fess.setAttribute('fess-url', '//<server>/json');
    fess.
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(fess, s);
  })();
</script>
<fess:search></fess:search>

(from github.com/marevol)
Parameter Name is not for passing Access Token.
Fess Site Search script does not support Authorization header at the moment…
It will be supported in next release.