如何通过Azure Function应用中的代码直接获取Azure Function URL?

时间:2018-08-13 15:17:57

标签: azure azure-functions

在Azure门户中,您可以直接从门户获取功能URL。还有一种here可以使用Azure ARM API获取Azure Function URL的方法。但是我想知道,有什么方法可以直接在Azure Function Apps中通过代码(Node.js,Python等)获取“ Function URL”吗?

enter image description here

1 个答案:

答案 0 :(得分:6)

对于Node.js azure函数,您只需使用以下代码行:req.originalUrl

详细步骤如下:

1。在Azure门户中,创建一个Http触发器函数,选择JavaScript作为其编程语言。

2。在index.js文件中,添加以下代码行:context.log(req.originalUrl);

3。示例代码如下:

  module.exports = function (context, req) {

       context.log(req.originalUrl);
       //write you other logic below
  };

请参考以下屏幕截图以获取测试结果: enter image description here