Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Client] Use MSAL to generate NAA token and pass in authorization header when making function calls #117

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

Jesperholmbergmsft
Copy link
Contributor

This PR updates the Client package to take a dependency on MSAL and teams-js. This in order to generate a bearer token to include in function calls, for the server side to validate. In addition, minor adjustments are done to the TTK configuration and tab sample in order to showcase the feature.

Token validation is not included in this PR, that'll come separately.

How tested:

  • Building the cli, app and client libraries locally, I used the cli to create a new Embed app from the Tab template
  • In the newly created app, after pointing the app & client dependencies to my local build, simply run in Chrome using TTK
  • The app is built, deployed, starts up. When I install the app in Teams and open the tab, I'm prompted to consent to the user.read scope in order to create a token. After consenting, the app successfully calls the hello-world function and prints the response.
  • I see in the network tab that a valid bearer token is included in the function call, and the other custom spark request headers are included as expected.

const appTenantId = req.header('X-Spark-App-Tenant-Id');
const appSessionId = req.header('X-Spark-App-Session-Id');
const pageId = req.header('X-Spark-Page-Id');
const authorization = req.header('Authorization')?.split(' ');
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is where an upcoming PR will actually validate the token. At that point, I'll remove the X-Spark-User-Id and X-Spark-Tenant-Id headers as we can get those values from the token itself. I just made minor changes here for the moment not to regress existing validation.

@aacebo aacebo merged commit baa6315 into microsoft:main Mar 31, 2025
5 checks passed
@Jesperholmbergmsft Jesperholmbergmsft deleted the jh/msalTokenAcquisition branch April 1, 2025 18:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants