Skip to content

Latest commit

 

History

History
181 lines (104 loc) · 7.2 KB

import-function-app-as-api.md

File metadata and controls

181 lines (104 loc) · 7.2 KB
title description services documentationcenter author manager editor ms.service ms.workload ms.tgt_pltfrm ms.devlang ms.topic ms.date ms.author
Import an Azure Function App as an API in Azure API Management | Microsoft Docs
This tutorial shows you how to import an Azure Function App into Azure API Management as an API.
api-management
mikebudzynski
cfowler
api-management
mobile
na
na
tutorial
08/28/2018
apimpm

Import an Azure Function App as an API in Azure API Management

Azure API Management supports importing Azure Function Apps as new APIs or appending them to existing APIs. The process automatically generates a host key in the Azure Function App, which is then assigned to a named value in Azure API Management.

This article walks through importing an Azure Function App as an API in Azure API Management. It also describes the testing process.

You will learn how to:

[!div class="checklist"]

  • Import an Azure Function App as an API
  • Append an Azure Function App to an API
  • View the new Azure Function App host key and Azure API Management named value
  • Test the API in the Azure portal
  • Test the API in the developer portal

Prerequisites

[!INCLUDE api-management-navigate-to-instance.md]

Import an Azure Function App as a new API

Follow the steps below to create a new API from an Azure Function App.

  1. In your Azure API Management service instance, select APIs from the menu on the left.

  2. In the Add a new API list, select Function App.

    Add from Function App

  3. Click Browse to select Functions for import.

    Add from Function App

  4. Click on the Function App section to choose from the list of available Function Apps.

    Add from Function App

  5. Find the Function App you want to import Functions from, click on it and press Select.

    Add from Function App

  6. Select the Functions you would like to import and click Select.

    Add from Function App

    [!NOTE] You can import only Functions that are based off HTTP trigger and have the authorization level setting set to Anonymous or Function.

  7. Switch to the Full view and assign Product to your new API. If needed, edit other pre-populated fields.

    Add from Function App

  8. Click Create.

Append Azure Function App to an existing API

Follow the steps below to append Azure Function App to an existing API.

  1. In your Azure API Management service instance, select APIs from the menu on the left.

  2. Choose an API you want to import an Azure Function App to. Click ... and select Import from the context menu.

    Append from Function App

  3. Click on the Function App tile.

    Append from Function App

  4. In the pop-up window, click Browse.

    Append from Function App

  5. Click on the Function App section to choose from the list of available Function Apps.

    Add from Function App

  6. Find the Function App you want to import Functions from, click on it and press Select.

    Add from Function App

  7. Select the Functions you would like to import and click Select.

    Add from Function App

  8. Click Import.

    Append from Function App

Generated Azure Function App host key

Import of an Azure Function App automatically generates:

  • host key inside the Function App with the name apim-{your Azure API Management service instance name},
  • named value inside the Azure API Management instance with the name {your Azure Function App instance name}-key, which contains the created host key.

Warning

Removing or changing value of either the Azure Function App host key or Azure API Management named value will break the communication between the services. The values do not sync automatically.

If you need to rotate the host key, make sure the named value in Azure API Management is also modified.

Access Azure Function App host key

  1. Navigate to your Azure Function App instance.

  2. Select Function App settings from the overview.

    Add from Function App

  3. The key is located in the Host Keys section.

    Add from Function App

Access the named value in Azure API Management

Navigate to your Azure API Management instance and select Named values from the menu on the left. The Azure Function App key is stored there.

Add from Function App

Test the new API Management API in the Azure portal

You can call operations directly from the Azure portal. Using the Azure portal is a convenient way to view and test the operations of an API.

  1. Select the API that you created in the preceding section.

  2. Select the Test tab.

  3. Select an operation.

    The page displays fields for query parameters and fields for the headers. One of the headers is Ocp-Apim-Subscription-Key, for the subscription key of the product that is associated with this API. If you created the API Management instance, you are an administrator already, so the key is filled in automatically.

  4. Select Send.

    The back end responds with 200 OK and some data.

Call an operation from the developer portal

You can also call operations from the developer portal to test APIs.

  1. Select the API that you created in Import and publish a back-end API.

  2. Select Developer portal.

    The developer portal site opens.

  3. Select the API that you created.

  4. Select the operation you want to test.

  5. Select Try it.

  6. Select Send.

    After an operation is invoked, the developer portal displays the Response status, the Response headers, and any Response content.

[!INCLUDE api-management-define-api-topics.md]

Next steps

[!div class="nextstepaction"] Transform and protect a published API