From cf96f2177c183c31f79e523e3010f6355535368b Mon Sep 17 00:00:00 2001 From: harveyappleton <56404035+harveyappleton@users.noreply.github.com> Date: Thu, 10 Oct 2019 16:46:42 +0100 Subject: [PATCH] Update App.js --- example/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/App.js b/example/App.js index 9fc402d..ffe1a23 100644 --- a/example/App.js +++ b/example/App.js @@ -16,6 +16,8 @@ export default class App extends React.Component { loginSuccess: false }; this.azureInstance = new AzureInstance(credentials); + this.azureInstance.redirect_uri = 'YOUR REDIRECT ADDRESS HERE'; + this.azureInstance.authority = 'https://login.microsoftonline.com/YOUR-TENANT-ID-HERE'; this._onLoginSuccess = this._onLoginSuccess.bind(this); }