I just want to be able to do a rest call using Azure Web Api Management without needing to pass the subscription-key in the url. Is that possible?
相关问题
- running headless chrome in an microsoft azure web
- Docker task in Azure devops won't accept "$(pw
- Register MicroServices in Azure Active Directory (
- Removing VHD's from Azure Resource Manager aft
- Cannot use the Knowledge academic API
相关文章
- SQL Azure Reset autoincrement
- How to cast Azure DocumentDB Document class to my
- Can't get azure web role to run locally using
- Azure WebApp - Unable to auto-detect the runtime s
- How to change region for Azure WebSite
- Azure webjob vs cloud service
- Azure data transfer Identity Column Seed Jumped by
- Download Azure web app?
You can do this:
API Management Portal -> Product -> click a product -> Settings -> Require Subscription
However, the subscription key provides identification to the Azure API portal. Without it, you lose analytics, security, throttling...basically every reason why you would want to want to use API Management in the first place.
Unless you have a reason to uncheck this and still use API management (which you might have), I would recommend letting the user just hit the API directly if you don't want subscription keys. I only would uncheck this checkbox if I had a special product line for demonstration purposes.
Azure API management allows for anonymous subscriptions.
Create a Product without requiring a subscription (Product -> Settings -> Require Subscription) Add your API to this product.
https://azure.microsoft.com/en-us/documentation/articles/api-management-howto-add-products/