I'm trying to implement a custom endpoint for using in our Outlook add-in. I'm following this article.
Does anyone know how to implement this correctly? I have this code but it does not work (yet). What do I need to fill in inside 'clientId'?
authenticator.endpoints.add('Okta', {
provider: "Okta",
clientId: "",
baseUrl: "https://<customdomain>.okta-emea.com/oauth2/v1/",
authorizeUrl: "authorize"
});