Hi !
I have this JSON, in my body with HTTP POST Request :
[{
"title": "my_title",
"image_url": "my_image_url",
"url": "my_url",
"twitter" : true
},
{
"title": "my_title2",
"image_url": "my_image_url2",
"url": "my_url2",
"twitter" : false
}]
I want to get the URL of object when "twitter" : true.
I have a flow with HTTP and condition @contains(triggerBody(), '"twitter" : true')' but I don't know if it's the good solution.
And, I don't know how to get the url and title and image_url values in order to fill the the Twitter action.
Can you help me please ?
Regards.
Dorian