Hi!
I'm trying to create a Custom Connector that gets an Access token from Microsoft Graph. My goal is to create a reusable Connector that could be used in multiple Flows that uses Microsoft Graph API to do various tasks, eg. Create a Planner plan.
My issue is that the token endpoint (https://login.microsoftonline.com/{tenantId}/oauth2/token) has Content-Type: x-www-form-urlencoded and the body of the POST request should look something like this:
grant_type=password&resource=https://graph.microsoft.com&client_id={myClientId}&client_secret={myClientSecret}&username={myUsername}&password={myPassword}
Obviously this is not valid JSON, which the Action->Request body requires.
How would I go about getting this request to work with urlencoded body and getting the parameters dynamic?
Thanks in advance!

Report
All responses (
Answers (