Skip to content

Commit 4ac7b8f

Browse files
authored
Merge pull request #27 from microsoftgraph/add-redirect
Correcting redirect
2 parents f234b6e + 9f2e5b0 commit 4ac7b8f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

demos/02-add-aad-auth/graph-tutorial/src/Config.js.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
appId: 'YOUR_APP_ID_HERE',
3-
redirectUri: 'https://localhost:3000',
3+
redirectUri: 'http://localhost:3000',
44
scopes: [
55
'user.read',
66
'calendars.read'

demos/03-add-msgraph/graph-tutorial/src/Config.js.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
appId: 'YOUR_APP_ID_HERE',
3-
redirectUri: 'https://localhost:3000',
3+
redirectUri: 'http://localhost:3000',
44
scopes: [
55
'user.read',
66
'calendars.read'

tutorial/04-add-aad-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Create a new file in the `./src` directory named `Config.js` and add the followi
77
```js
88
module.exports = {
99
appId: 'YOUR_APP_ID_HERE',
10-
redirectUri: 'https://localhost:3000',
10+
redirectUri: 'http://localhost:3000',
1111
scopes: [
1212
'user.read',
1313
'calendars.read'

0 commit comments

Comments
 (0)