Integrations
A collection of helper methods to streamline integration with supported third-party services like Disqus.
Disqus
The Disqus integration provides you with an out-of-the-box SSO integration.
- You can only make this call if the user is authenticated.
- You will receive a data object containing the auth key and the public key
window.Pelcro.integrations.disqus.getToken((error, response) => {
if (error) {
return console.log("error", error.message);
}
const {disqus_auth_key, disqus_public_key} = response.data;
console.log("disqus_auth_key", disqus_auth_key);
console.log("disqus_public_key", disqus_public_key);
});
Updated about 16 hours ago