Delen via


Dev Proxy gebruiken met JavaScript Azure Functions

Als u Azure Functions bouwt met Behulp van JavaScript en Dev Proxy wilt gebruiken, volgt u de algemene richtlijnen voor het gebruik van Dev Proxy met Node.js toepassingen.

Als u eenvoudig wilt kunnen schakelen tussen het gebruik van Dev Proxy in ontwikkeling en niet in productie, kunt u de proxy het beste configureren in uw Azure Functions-app met behulp van omgevingsvariabelen. Wijzig het local.settings.json bestand om de HTTPS_PROXY omgevingsvariabele op te nemen. Schakel bovendien certificaatvalidatie uit om de Azure Functions-app toe te staan het zelfondertekende certificaat te vertrouwen dat wordt gebruikt door Dev Proxy.

{
  "IsEncrypted": false,
  "Values": {
    "FUNCTIONS_WORKER_RUNTIME": "node",
    "AzureWebJobsFeatureFlags": "EnableWorkerIndexing",
    "AzureWebJobsStorage": "UseDevelopmentStorage=true",
    "HTTP_PROXY": "http://127.0.0.1:8000",
    "NODE_TLS_REJECT_UNAUTHORIZED": "0"
  }
}

Gebruik het process.env object in uw Azure Functions-app om de omgevingsvariabelen te lezen en de proxy voor uw HTTP-aanvragen te configureren.

import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";
import fetch from 'node-fetch';
import { HttpsProxyAgent } from 'https-proxy-agent';

export async function MyFnHttpTrigger(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
    const options = process.env.HTTP_PROXY ? { agent: new HttpsProxyAgent(process.env.HTTP_PROXY) } : {};
    const resp = await fetch('https://jsonplaceholder.typicode.com/posts', options);
    const data = await resp.json();
    return {
      status: 200,
      jsonBody: data
    };
};

app.http('MyFnHttpTrigger', {
    methods: ['GET', 'POST'],
    authLevel: 'anonymous',
    handler: MyFnHttpTrigger
});