Kloudless Authenticator Demo
Kloudless Authenticator JS library demo.
HTML
<script src="https://static-cdn.kloudless.com/p/platform/sdk/kloudless.authenticator.js"></script>
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<h3>Launch Authenticator</h3>
<p>Click the button to open the authentication popup for testing.</p>
<button id="test">Test OAuth authentication</button>
<h3>Result</h3>
https://jsfiddle.net/vinodchandru/4f8nsy68/#run
JavaScript
$(function() {
window.Kloudless.authenticator($("#test"), {
client_id: 'J2hLI4uR9Oj9_UiJ2Nnvhj9k1SxlZDG3xMtAQjvARvgrr3ie',
}, function(res) {
var newEl = document.createElement('pre');
newEl.appendChild(document.createTextNode(JSON.stringify(res, null, 2)));
document.body.appendChild(newEl);
});
})