Privacy
If your team wants to use Canny's changelog privately (eg. only exposing it to customers or teammates), you can still use the changelog widget.
There's just one additional step, in order to ensure your data stays safe. First generate an SSO token on your server, and then pass it in to our SDK when you initialize the changelog widget.
1. Generate an SSO token on your server
Follow steps on this page in order to generate SSO tokens on your server.
2. Pass the SSO token into our SDK
Pass the server-generated SSO token into our SDK when you initialize the changelog widget. Here's a snippet:
Canny('initChangelog', {
  appID: 'YOUR_APP_ID',
  ssoToken: GENERATED_SSO_TOKEN,
  position: 'bottom',
  align: 'left',
  theme: 'light', // options: light [default], dark, auto
});