Skip to content

OfficeDev/outlook-actionable-messages-node-token-validation

Repository files navigation

page_type products languages extensions
sample
office-outlook
office-365
javascript
contentType technologies createdDate
samples
Actionable messages
11/17/2016 11:23:12 AM

Action Request Token Verification Node.js Sample

Services can send actionable messages to users to complete simple tasks against their services. When a user performs one of the actions in a message, an action request will be sent by Microsoft to the service. The request from Microsoft will contain a bearer token in the authorization header. This code sample shows how to verify the token to ensure the action request is from Microsoft, and use the claims in the token to validate the request.

    app.post('/api/expense', function (req, res) {
        var token;
        
        // Get the token from the Authorization header 
        if (req.headers && req.headers.hasOwnProperty('authorization')) {
            var auth = req.headers['authorization'].trim().split(' ');
            if (auth.length == 2 && auth[0].toLowerCase() == 'bearer') {
                token = auth[1];
            }
        }
        
        if (token) {
            var validator = new validation.ActionableMessageTokenValidator();
            
            // This will validate that the token has been issued by Microsoft for the
            // specified target URL i.e. the target matches the intended audience (“aud” claim in token)
            // 
            // In your code, replace https://api.contoso.com with your service’s base URL.
            // For example, if the service target URL is https://api.xyz.com/finance/expense?id=1234,
            // then replace https://api.contoso.com with https://api.xyz.com
            validator.validateToken(
                token, 
                "https://api.contoso.com",
                function (err, result) {
                    if (err) {
                        console.error('error: ' + err.message);
                        res.status(401);
                        res.end();
                    } else {                        
                        // We have a valid token. We will now verify that the sender and action performer are who
                        // we expect. The sender is the identity of the entity that initially sent the Actionable 
                        // Message, and the action performer is the identity of the user who actually 
                        // took the action (“sub” claim in token). 
                        // 
                        // You should replace the code below with your own validation logic 
                        // In this example, we verify that the email is sent by expense@contoso.com (expected sender)
                        // and the email of the person who performed the action is john@contoso.com (expected recipient)
                        //
                        // You should also return the CARD-ACTION-STATUS header in the response.
                        // The value of the header will be displayed to the user.
                        
                        if (result.sender.toLowerCase() != 'expense@contoso.com' ||
                            result.action_performer.toLowerCase() != 'john@contoso.com') {
                            res.set('CARD-ACTION-STATUS', 'Invalid sender or the action performer is not allowed.')
                            res.status(403);
                            res.end();
                            return;
                        }

                        // Further business logic code here to process the expense report.
                        
                        res.set('CARD-ACTION-STATUS', 'The expense was approved.')
                        res.status(200);
                        res.end();
                    }
                });
        } else {
            res.status(401);
            res.end();
        }
    });

The code sample is using the following library for JWT validation.

jsonwebtoken

More information Outlook Actionable Messages is available here.

Copyright

Copyright (c) 2017 Microsoft. All rights reserved.

This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

About

Node.js code sample to validate bearer token for Outlook Actionable Messages

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •