Reputation: 1
In this image u can see that i have used scope (audience) as https://ml.azure.com/.default because the batch endpoint which I'm going to test is obtained from Azure ML studio and i have give all the secrets, id which is obtained from azure active directory authentication(AAD) and finally i got the bearer token and but when passing bearer token to batch endpoint it is giving 403 forbidden error (BY_POLICY )issue(2nd image) . please explain what is this BY_POLICY issue and how to resolve it ?1st_image 2nd image
i got the bearer token from postman and but when passing bearer token to batch endpoint it is giving BY_POLICY issue . please explain what is this BY_POLICY issue and how to resolve it ?
Upvotes: 0
Views: 813
Reputation: 5
You need to have certain permissions on the Azure ML instance to be able to query the batch endpoint, as described in the documentation. Make sure that the identity you are using does have roles granting these permissions.
Upvotes: 0