How to call another function with in an Azure function

前端 未结 6 1002
醉话见心
醉话见心 2021-02-07 00:21

I have written 3 functions as follows

  1. create users in db
  2. fetch users from db
  3. process users

In [3] function, I will call [2] functi

6条回答
  •  你的背包
    2021-02-07 00:54

    There's nothing built-in in Function Apps to call one HTTP function from other functions without actually making the HTTP call.

    For simple use cases I would just stick to calling by full URL.

    For more advanced workflows, have a look at Durable Functions, paticularly Function Chaining.

提交回复
热议问题