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

Azure API App Swagger is not available from portal

I've created an Azure API App and deployed it to Azure. At first, I had no problem getting the Swagger file from the portal (i.e. by clicking the "API Definition" button on the API App blade), but at some point it stopped working. I've enabled the…
Scott
  • 1,077
  • 2
  • 11
  • 23
6
votes
1 answer

How to debug Azure Function QueueTrigger locally

I am developing an azure functions which will be triggered by the azure storage queue. For HTTPTrigger we can debug locally , but am not able to find the way to debug QueueTrigger locally . Can anyone of you tell me how can i acheieve debugging on…
6
votes
1 answer

Azure API App how to use single hosted api for both Mobile and Web

This question is related to following questions but not the same question How can i integrate Azure Mobile App win Azure API app How to combine azure AppServices API, Mobile and Web apps I have been trying to setup an API to use with my mobile…
Thabo
  • 1,492
  • 2
  • 18
  • 36
6
votes
4 answers

How can view the swagger ui for Azure API app

I am creating an Azure API app on Visual Studio 2015. when i hit browse and redirected to http://localhost:3012/ if i add swagger to the url nothing happens : http://localhost:3012/swagger it seems I need to add the /docs/v1 for a full address :…
Shankar
  • 63
  • 1
  • 1
  • 4
6
votes
2 answers

401 error when authenticating to an Azure API App using AAD

I have an API app that has been working fine with a Gateway Host and now that the gateway host is being deprecated I'm trying to follow the Migration Guide. I've redeployed my service using the 2.8.1 SDK and can log into the service with a browser…
Graeme Wilson
  • 130
  • 1
  • 2
  • 7
6
votes
1 answer

Unable to get bearer token from Azure AD to use with API App

I have an MVC application that needs to access private API App in Azure that is protected with Azure AD authentication. So I need to get Azure AD bearer token, transfer it into Zumo-Auth token and use it to access the API App. I'm going through…
trailmax
  • 34,305
  • 22
  • 140
  • 234
5
votes
3 answers

Difference between Web API and Azure API APP in Visual Studio

When creating an new ASP.NET Web application in order to develop my APIs and host it in Azure, I have two choices: Web API Azure API APP I can create a Web API APP and host it in Azure API APP? So what's the main reason they both exist?
Hussein Salman
  • 7,806
  • 15
  • 60
  • 98
5
votes
2 answers

Visual studio unable to add swagger metadata file in my rest api client

I am new to mobile development. As i am familiar with c# .net so i am using xamarin plugin for visual studio. I have created a sample app in which i have used SQLite, created a DB and then performed CRUD operations. At this point all things are…
Moeez
  • 494
  • 9
  • 55
  • 147
5
votes
1 answer

Db context on azure app service (mobile) fails

I have a controller running on Azure App Service - Mobile. The trace shows that the below code runs fine until db.SaveChanges() this fails. var telemetry = new Microsoft.ApplicationInsights.TelemetryClient(); telemetry.TrackTrace("Create…
JTIM
  • 2,774
  • 1
  • 34
  • 74
5
votes
2 answers

Azure API Management - API End-Point Domain vs Actual API URL

I have setup an Azure API Management Service and its configured on a custom domain. Under the API Management Service's Configure Section in the Azure Portal, I have set the following: Because this is a client system, I have to block out the…
Jason H
  • 4,996
  • 6
  • 27
  • 49
5
votes
3 answers

Azure easy table connection string missing

I have an azure mobile app created, and am about to setup Easy Table. I have followed each step and have created a connection string to a SQL database created before the mobile app. But when I initialized app to use Easy Table, I got the error…
Mr.War
  • 55
  • 5
5
votes
1 answer

Azure API App client is not generating enums

I hava swagger generated by Swashbuckle from my WebApi service. It all looks fine in terms of types and so on..., however when I generate the proxy classes using Azure API App client it lacks the enum declarions. When I double-checked it was there…
Dave
  • 349
  • 1
  • 15
5
votes
1 answer

API security in Azure best practice

I'm developing a web API that will be called by other web apps in the same Azure host and also other 3rd party services/ app. I'm currently looking into API Apps and API management, but there are several things unclear for me regarding security…
5
votes
1 answer

Increase the maximum request length in a Azure Api App

I have created an Azure Api App which I will use to upload files. These files will be > 4mb hence the need to increase the maximum request length. I have added the following to Web.config:
Alex
  • 1,322
  • 1
  • 20
  • 44
4
votes
1 answer

Azure Active Directory Application Permission Change Delay

I am using Azure Active Directory to give my application access to the Microsoft Graph API. When I make permission changes (e.g., read/write access for various types of data) I am noticing a delay from when the changes are saved and when I am able…
1
2
3
27 28