Azure Logic Apps error While Adding API Apps

前端 未结 2 779
暖寄归人
暖寄归人 2021-01-27 10:47

I am doing on POC for getting records from On-Premise SQL By using Logic Apps + API Apps.

I have created SQL Connector in API Apps and also created Logic Apps. But when

相关标签:
2条回答
  • 2021-01-27 11:10

    In the application settings you should change the access level to "public (authenticated)". currently Only other API apps or web apps in the same resource group are allowed to call the API app. In such a case the level will be internal.

    "Permissions for service are set to internal but this request was external" for app in same resource group

    0 讨论(0)
  • 2021-01-27 11:26

    Related issue.

    I was accessing Function app, via Logic app, when I got the above error.

    Following worked for me:

    1. Function app > Platform features tab > API > CORS > Allowed Origins > (remove all, Save)

    2. Function app > Platform features tab > API > CORS > Allowed Origins > * > Save (that is add * and save)

    3. Function app > Overview tab > Restart

    4. Now the Logic app worked fine.

    Hope that helps.

    0 讨论(0)
提交回复
热议问题