Questions tagged [azure-api-apps]

API Apps are part of the Azure App Service suite that also includes web apps, mobile apps, and logic apps.

An API app is an Azure App Service web app with additional features that enhance the experience of developing, deploying, publishing, consuming, managing, and monetizing RESTful web APIs.

That means API apps share with web apps all the web hosting features of the Azure App Service platform:

  • Automatic OS patching
  • Enterprise grade security
  • High availability
  • Auto scaling and load balancing
  • WebJobs for background processing
  • Quick and easy deployment, and many continuous delivery options
421 questions
4
votes
1 answer

Azure API Management and API Versioning

How does Azure API Management help me manage different versions of my API and re-route selected actions from an old version to a new version of the API?
puri
  • 1,829
  • 5
  • 23
  • 42
4
votes
3 answers

JSON.NET to deserialize dynamic object

I have JSON data: var decodedJson = "{{ "user": { "userId": "sid:C4F4E93856104F078A11FE95892F0158" }, "authenticationToken":…
Minh Nguyen
  • 2,106
  • 1
  • 28
  • 34
4
votes
2 answers

Authenticate to Azure API App using ADAL

I have an Azure API App marked as "Public (authenticated)" and set up an Azure Active Directory identity in the associated gateway as detailed in Protect an API App. I then created a native application in the same Azure Active Directory Tenant and…
Jeff
  • 3,307
  • 2
  • 25
  • 36
3
votes
2 answers

How to react to message from Microsoft regarding updating API's

I got a message from Microsoft in the last few days Azure SQL Database 2014-04-01 APIs will be retired on 31 October 2025. You're receiving this email because you use Azure SQL Database APIs. To improve performance and security, we're updating…
gordon613
  • 2,770
  • 12
  • 52
  • 81
3
votes
1 answer

How to get how much requests units consumed by cosmos query in Python SDK API

How to check how many Request units consumed for each requests in Azure comsos DB query using python sdk. Below code only prints output of the response from particular ReadItem, I also interested in how many request units consumed by query. #…
Vidya
  • 547
  • 1
  • 10
  • 26
3
votes
1 answer

Should I use the Authorization header for API keys

We're going to expose a custom built API (.NET) through Azure API Management. We want to conform to well-known standards where ever possible, so we don't surprise our API consumers. The API is secured through an API key which users generate from…
Kye
  • 5,919
  • 10
  • 49
  • 84
3
votes
1 answer

Restrict Azure Application access to a specific folder in OneDrive

We have a requirement to upload to and read files from a single folder in OneDrive for Business through a Django app. We are using Microsoft Graph API with application permission. While the Azure provides Files.ReadWrite.All permission, the…
3
votes
1 answer

How to import Azure API App which contains the basic authentication into API Management

I have deployed ASP.NETCore 2.1 code into Azure App Service with Basic Authentication. After that I have imported this API App into Azure API Management, then I can see all API actions in GUID format instead of original operations. And tried to…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
3
votes
0 answers

Azure App Service API gets FileNotFoundException: Could not find file 'D:\home\site\wwwroot\MyApi.xml when trying to start swagger

I am working on an ASP.NET Core 2.2 API deployed to Azure App Services. I am deploying to a DEV slot. I am using Swagger, which works fine on my localhost, but when I go to the URL of by DEV slot and use /swagger, I get the…
3
votes
3 answers

Manage versioned API in Azure API Manager

I´m looking into host our web API in Azure using an API app. I am using the Azure API Manager in front of the API App to expose the developer portal to some of our consumers. The web API is built in .NET core and it has version support using the URL…
3
votes
2 answers

Azure App Service ApiApp

I am trying to create an API App in Azure App Service with PowerShell. The cmdlet I am calling always create a Web App by default. If it is possible, I would like to know how I can specify the type/kind to be Api App instead of Web App?…
vinhent
  • 2,692
  • 4
  • 17
  • 20
3
votes
1 answer

Azure node.js API App - Failing during run-time (possibly node.js version issue?)

I have a node.js API App that is being deployed via continuous delivery/deployment in VSO (Visual Studio Online). I discovered that the app fails when i import modules such as 'express'. I installed 'express' on the azure machine, via Kudo console.…
3
votes
1 answer

How to Configure Internal IP for Azure API App Service?

I have a Azure API App service which needs to be exposed to client with single Internal IP. How can i do this?
3
votes
3 answers

What happens after Azure App Service quota or limit is reached under the free tier?

I have an Azure API App hosted under free tier. I went through this article describing the limits and quotas. https://learn.microsoft.com/en-us/azure/azure-subscription-service-limits#app-service-limits I am not sure about the following scenario.…
3
votes
1 answer

CORS Prelight Issue

I am getting following error for a jQuery call to my azure app proxy XMLHttpRequest cannot load https://azentsearchdev01-mytenant.msappproxy.net/search?text=mytext&type=json&callback=json_callback. Response for preflight is invalid (redirect) This…
1 2
3
27 28