Skip to content

Commit

Permalink
typo changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Prithvi-MSFT committed Nov 2, 2023
1 parent f0b2512 commit acecfe3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions samples/graph-rsc/nodeJs/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ async function getInstalledAppList(accessToken, reciepientUserId) {
Authorization: "Bearer " + accessToken
}
};

axios.get("https://graph.microsoft.com/v1.0/users/" + reciepientUserId + "/teamwork/installedApps/?$expand=teamsAppDefinition", config)
.then(async (res) => {
var appId = getAppId(res.value);
Expand Down Expand Up @@ -96,6 +97,7 @@ async function sendActivityFeedNotification(accessToken, reciepientUserId, appId
Authorization: "Bearer " + accessToken
}
};

axios.get(`https://graph.microsoft.com/beta/users/${reciepientUserId}/teamwork/sendActivityNotification`, postData, config)
.then((res) => {
console.log("Success");
Expand Down

0 comments on commit acecfe3

Please sign in to comment.