Microsoft graph throws the below exception when initializing the client using the access token
the access token was generated just before initializing the client & also the same token works in post-man
what is that I'm doing wrong?
code
let graphClient = graph.Client.init({
// Use the provided access token to authenticate
// requests
authProvider: (done) => {
done(null, accessToken);
}
});
Post-man response