Reputation: 55
I have published a pipeline created inside azure machine learning service workspace, and i have its rest endpoint with me. I also have Service principal Id and secrets which have contributor access over the workspace. I am trying to invoke this pipeline thorough its rest endpoint from adf using the SPn id and secret. But i am getting forbidden error, is there a guideline how to schive it without using python SDKs.
Upvotes: 0
Views: 315
Reputation: 66
Can you try first with bearer token produced by CLI: az account get-access-token --subscription
Does it work?
Upvotes: 0