Questions tagged [azure-api-management]

Azure API Management is a cloud hosted service that can add many capabilities to an existing HTTP API on any platform. This includes functions related to security, API key management, caching, documentation, and many other cross cutting policies.

For more info, see http://azure.microsoft.com/apim.

2365 questions
24
votes
3 answers

How to create an array in a for loop in Liquid?

I'm trying to create an array from a list of objects using Liquid syntax: {% for operation in menuItems %} {% assign words1 = operation.Title | split: '_' %} {% assign controllerName = words1 | first %} {% assign controllersTmp =…
Maroine Abdellah
  • 576
  • 1
  • 5
  • 21
23
votes
3 answers

API management URL is giving Missing subscription key Issue

I am new to API management. I have created a Basic WEB API & hosted to the API APP(App service). URL is working as expected & it's returning the data. i.e. http://xyz.azurewebsites.net/api/webapi But when I am adding the API App in the API…
lokanath das
  • 736
  • 1
  • 10
  • 35
20
votes
6 answers

How to debug 500 error from Azure API Management call?

I have my API hooked up to Azure's API Management service. When I try to call one of my endpoints, I get the following error: { "statusCode": 500, "message": "Internal server error", "activityId": "79c1bef9-a05d-4734-b729-0657c1749e40" } I…
Jason
  • 2,455
  • 4
  • 37
  • 48
19
votes
1 answer

What does the 'Ocp' stand for in Ocp-Apim-Subscription-Key header (Azure Api Management)?

I know you can change the name of the Ocp-Apim-Subscription-Key header in Api Management but what does the 'Ocp' actually stand for?
mehowq
  • 219
  • 2
  • 6
19
votes
2 answers

Azure Management REST API - "Authentication failed. The 'Authorization' header is provided in an invalid format."

I am desperately trying to move 2 classic storage accounts from my old MSDN subscription to my MPN subscription and I keep hitting a brick wall as move is only supported for these through REST APIs. I have enabled the APIs following the instructions…
Keith Jackson
  • 3,078
  • 4
  • 38
  • 66
19
votes
7 answers

Make back end APIs only accessible via Azure API management

I have multiple Web APIs deployed in Azure without applying authentication, so anyone has access to internet has the access to the Web APIs. Now I would like to apply authentications to the Web APIs, instead of implementing the same authentication…
17
votes
2 answers

Use Azure Api Management as a passthrough

I would like to create a policy in Azure API Management that forwards all calls that start with the path "proxy/search" to another url. However, i don't want to have to import/create endpoints in APIM for every possibility since this makes it a…
sjdirect
  • 2,224
  • 2
  • 22
  • 27
16
votes
4 answers

Azure Auth Token - AADSTS500113: No reply address is registered for the application

I am trying to obtain a token through postman using the following tutorial: https://learn.microsoft.com/en-us/azure/healthcare-apis/access-fhir-postman-tutorial I have successfully filled out the credentials then a pop up appears asking for my…
Funky
  • 12,890
  • 35
  • 106
  • 161
16
votes
1 answer

Aggregation of data on API Gateway

I am working on microservice architecture and I want to aggregate data from two microservices. For example, Frontend calls the API Gateway and API Gateway calls two microservices Customer and Order microservices. Customer microservice returns…
16
votes
8 answers

Azure APIM Fails to Create API from Function App

When I try to create an API in APIM by using Create from Function App, I fill out the fields and click Create. The operation provides the wait dots and comes back in five seconds and says Could not create an API. Please try again later. I can…
ΩmegaMan
  • 29,542
  • 12
  • 100
  • 122
14
votes
1 answer

What is the difference between API Gateway provided by Azure API Management and Azure Application Gateway?

I'm new to Azure and I skimmed through Azure official documentation. What I would like to understand is the difference and similarities between the API Gateway provided by Azure API Management and Azure Application Gateway? When do we require…
14
votes
2 answers

Azure Functions and Azure Application Gateway or API Management

I have several Microsoft Azure functions developed. I would like to use a gateway with firewall to make my Azure functions available and protected using one public IP only. Is there way to use Azure Functions with Azure Application Gateway or API…
13
votes
5 answers

Can we expose api management endpoints in azure without the opim-subscription keys?

Can we have API management end point exposed with out the subscription key sent as a part of headers?
Vinodh
  • 385
  • 1
  • 4
  • 15
13
votes
1 answer

Azure API Management > CORS and POST

I'm using Azure API Management to deliver a clean interface to third parties for integration purposes. I want do a POST with a JSON object to create this object in the backend. This works fine in the test console available in the portal site, but it…
Frederik V
  • 163
  • 1
  • 8
13
votes
2 answers

In Azure API Management can i use the subscription-key as part of Request headers instead of Query string parameter?

I am migrating a service to Azure API Management. This service is being called from mobile devices (native apps). Problem is that appending the subscription-key to the query string can take much longer for updating the app than just using it in the…
alinulms
  • 509
  • 1
  • 4
  • 19
1
2 3
99 100