I'm having an issue selecting the security scheme when exporting an azure function to Flow/PowerApps. It's not allowing me to select "API Key" as per this example:
https://docs.microsoft.com/nl-be/azure/azure-functions/app-service-export-api-to-powerapps-and-flow
Instead the dropdown just contains "none".
I'm using the express method to export my azure function.
Here is my swagger file:
swagger: '2.0'
info:
title: xxx.azurewebsites.net
version: 1.0.0
host: xxx.azurewebsites.net
basePath: /
schemes:
- https
- http
paths:
/api/HttpTriggerCSharp1:
post:
operationId: /api/HttpTriggerCSharp1/post
produces:
- application/json
consumes:
- multipart/form-data
parameters:
- name: file
in: body
description: Image to import
x-ms-summary: Image to import
x-ms-visibility: important
required: true
schema:
type: string
format: binary
responses:
'200':
description: Success operation
security:
- apikeyQuery: []
definitions: {}
securityDefinitions:
apikeyQuery:
type: apiKey
name: code
in: query
Who can help me?

Report
All responses (
Answers (