I'm new guy on power automate.
I want list folder from sharepoint, then use for each connector to get file content, finally create file to One driver.
i encountered below error when create file . not sure what's reason. thanks
{
"status": 401,
"message": "A potentially dangerous Request.Path value was detected from the client (?).",
"source": "api.connectorp.svc.ms"
}
What do you have in that Compose action?
You are getting that error because the file content contain some suspicious data, which can be used for a cross site scripting attack.
You can look for alternative solution like create file via Graph API: https://learn.microsoft.com/en-us/graph/api/driveitem-put-content?view=graph-rest-1.0&tabs=http#http-request-to-upload-a-new-file
---------------------------
If the solution I provided assisted you in resolving this issue, kindly select "Accept as solution" This will help others in finding the solution more expediently 😄Also, a Thumbs up would be a great compliment!