英文:
Can API Management use for api proxy?
问题
Azure API Management 可以实现这个功能,无需使用函数应用。
英文:
I am new to Azure and I want to use this architecture:
The client side accesses my server , which uses an API key to access another Server A.
Then Server A responds to the client side.
Can Azure API Management do that or do I need to use a function app?
答案1
得分: 1
Azure API Management是API的前端/外观。它不允许您实现API流程(调用端点A,然后B,等等)。
在您的情况下,您可能需要一个Azure函数来执行逻辑。但如果您的“服务器API”只执行身份验证/授权,Azure API Management可能会取代它。
英文:
Azure API Management is a front-end/facade for APIs. It doesn't allow you to realize an API flow (call endpoint A, then B, etc.).
In your case, you probably need an Azure Function to do the logic. But if your "server API" only does authentication/authorization, Azure API Management may replace it.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论