From NAC how do you get and pass the correct authentication token? An authentication token is required when calling the above URL from the Call a web service action within NAC workflow.
Looking at the Microsoft Graph api documentation, it doesn’t mention the “accept” header, so that could maybe be left out.
Thank you.
But from NAC how do you get and pass the correct authentication token? An authentication token is required when calling the above URL from the Call a web service action within NAC workflow.
How do you create an authentication token? There is documentation on how to register Apps and tokens, however, how do you utilize such token and when?
I am attempting to call a RESTful api in Microsoft Graph. It is indicating that a correct authentication token is not provided. What am I missing?
It sounds like this is more of a question on how to correctly use the Microsoft Graph API, and less about how to use NAC to accomplish it. I’m assuming that this page is the relevant one that describes the process to obtain an authentication token: https://learn.microsoft.com/en-us/graph/auth-v2-service
Assuming you have your app registered already, I think step 4 would be the relevant step.
Once you know from the API’s perspective what you would need to do, it will probably a
Call a Web Service action to generate the token
Parse out the token from the response
Whatever Call a Web Service actions you need that would actually use the token parsed in step 2.
I think that’s conceptually what you’ll need, but I have no experience with Microsoft Graph or it’s API to know how it works.