Skip to content
This repository has been archived by the owner. It is now read-only.

Commit 1fbe10f

Browse files
committed
Remove hardcoded client ID from sample.
Update port required per quickstart app registration.
1 parent 031ada2 commit 1fbe10f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JavaScriptSPA/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h4 id="WelcomeMessage"></h4>
2323
var isEdge = msedge > 0;
2424

2525
var applicationConfig = {
26-
clientID: "0813e1d1-ad72-46a9-8665-399bba48c201", //This is your client ID
26+
clientID: "Enter_the_Application_Id_here", //This is your client ID
2727
graphScopes: ["user.read"],
2828
graphEndpoint: "https://graph.microsoft.com/v1.0/me"
2929
};

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var morgan = require('morgan');
99
var path = require('path');
1010

1111
// Initialize variables.
12-
var port = 1530; // process.env.PORT || 30662;
12+
var port = 30662; // process.env.PORT || 30662;
1313

1414
// Configure morgan module to log all requests.
1515
app.use(morgan('dev'));

0 commit comments

Comments
 (0)