You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't tried it but from Intercom's docs, it seems that passing in a personalAccessToken instead of an appId should just work (without passing in an apiKey) since both are accepted as http auth username parameters.
Thus, please try passing in a personalAccessToken as such
var options = {
personalAccessToken: "your_access_token"
};
var intercom = new Intercom(options);
// OR can also be written as:
var intercom = new Intercom("your_access_token");
Intercom is replacing API keys with "Personal Access Tokens". Old requests will fail with effect from January 2017. Read more about here: https://developers.intercom.io/docs/personal-access-tokens
This module needs to be updated to handle this change.
The text was updated successfully, but these errors were encountered: