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
112
votes
7 answers

What is the difference between an API App and a Web App?

I've been reading a few tutorials now on deploying Web Apps and API Apps to Azure. However, I am still a little unsure as to why you would use one over another. I can create a new .NET solution with API controllers and deploy this as a Web App, so…
envio
  • 1,315
  • 2
  • 10
  • 13
31
votes
5 answers

Azure Custom Controller / API .Net backend

I have had a MobileService running on Azure, and have decided to create a new service and migrate the code myself. The new service is of the new type called: Azure Mobile App Service. Currently I have Authentication working, and can do…
JTIM
  • 2,774
  • 1
  • 34
  • 74
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
3 answers

Location of swagger.json when created with Swashbuckle

When I build and run my Azure Web API I get a nice swaggerUI. I want to add the API to Azure API Management. For this I need either a URL or the swagger.json file. Where does Swashbuckle put the file? Or if it generates it on the fly, how can I get…
Richard210363
  • 8,342
  • 6
  • 37
  • 63
19
votes
2 answers

How does Jetty deployment on Azure App Service work?

I have a Java web app that I run on an Azure App Service instance. To deploy it, I use a Bitbucket repo with a .war file inside it. When I commit a new .war file to this repo, it is supposed to be deployed automagically by the service. However, more…
halileohalilei
  • 2,220
  • 2
  • 25
  • 52
16
votes
2 answers

Azure Devops 203 Non-Authoritative Information with REST API

While calling a REST API for Azure DevOps I am getting an error 203 Non-Authoritative Information. Actually I want to trigger a release pipeline line with the help of REST API.
15
votes
1 answer

Serilog With API App in Azure

I've integrated Serilog into WebApi project developed with Asp.Net Core 2.0 This is the configuration code in Program.cs: Log.Logger = new LoggerConfiguration() .Enrich.FromLogContext() .WriteTo.Console() .CreateLogger(); I…
ZENIT
  • 500
  • 2
  • 4
  • 16
15
votes
4 answers

Unable to connect to the Remote Debugging - Web App Azure

I am trying to remote debug an Asp.Net Core Web Application (with Web API) project deployed as an Azure App Service with Visual Studio 2017 Professional. Followed the instructions as documented here. Essentially, using the Server Explorer-->App…
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…
8
votes
1 answer

Unable to resolve (502) Bad Gateway error in Azure App Service

We have an App Service Plan (P2v2: 1) that has 6 .Net Core Web API's & 2 Web Jobs deployed. Of late, 1 of the Web API periodically starts emitting (502) Bad Gateway error. The error seems to resolve on it's own or we need to restart the App…
Dan Lee BTS
  • 81
  • 1
  • 1
  • 2
8
votes
2 answers

How to remote desktop to Azure App?

I have created an Azure API App. Then I need to run some command line for testing on that environment. In Azure classic I can do remote desktop to Cloud services to run some command line but now in Azure App it seems I am unable to do this. Any…
Minh Nguyen
  • 2,106
  • 1
  • 28
  • 34
8
votes
6 answers

CORS headers missing when deployed on Azure Web App / Azure API

I have created an OWIN hosted WebAPI 2. There's also a web app (AngularJS) that's using the API and acting as a client. I've added the necessary code for the CORS to the Startup.cs, and hosted it in local IIS on a port different than the client and…
veljkoz
  • 8,384
  • 8
  • 55
  • 91
7
votes
1 answer

How to deploy Angular 6 with .NET Core 2.0 Web API Application to Microsoft Azure?

How to deploy Angular 6 with .NET Core 2.0 Web API Application to Microsoft Azure? I have created ASP.NET Core 2.0 Web API (Server-Side app) application and inside that created Angular 6.0 app (Client-Side app). Both apps are build and running…
7
votes
1 answer

Difference between azure api-apps,logic-apps,web-apps and azure functions

What is the difference between azure API-apps,logic-apps,web-apps and azure functions? And what difference does it make for developer?
7
votes
2 answers

How do you authencate to Azure App Services locally?

There are alot of tutorials on how to configure the Authentication properties of a given Azure App Service instance: Api Apps Expanding App Service Authentication/Authorization There are guides for configuring the Azure Server-Side properties…
1
2 3
27 28