jeffhollan/functions-long-running-logicapps

How can I fetch the response data in logic app at callback

Opened this issue · 1 comments

Hi @jeffhollan
Your post has really helped us understanding the webhook concept, Can you also please help us understand how to fetch the response data in logic app. i.e. response sending along with the callback

client.PostAsJsonAsync(item.callbackUrl, result);

fetch result from the above line in logic app

I'm having an issue with this as well. There seems to be a bug with the callback. I see the request coming back to my logic app. However, the payload is never sent.

I was able to work around this by using a fluent http client framework called Flurl to make the callback request and added an await statement to the call.