Need help with requesting multiple urls from different ids
-
hi people!
i been working on this for some days now and i cant figure it out. i will give some info on what it looks like:
The response
"id": "NFpVWp_Gjn0PlIX0Jp469A..", },
{
"id": "E0h85ObzlDo4T5aNV0V3EQ..",The end of the POST request
{"}","id":"<xxx[*]>"}
the response will return something like this, i need to parse the IDs and then with those ids make different requests to the same url (POST requests)
the way i have been trying, i parse the ids but the second time it requests the url its with the same id.. i need the first to be NFpVWp_Gjn0PlIX0Jp469A.. and the second E0h85ObzlDo4T5aNV0V3EQ.. etc etc
this request i need to do up to 6-7 times, any help with this will be greatly appreciated
even can be payed for
-
@ikamai Tick recursive on your parse block, then make a loop, there are many examples in the forum
https://forum.openbullet.dev/topic/1452/how-to-save-this-as-a-list/4
https://forum.openbullet.dev/topic/7/how-to-loop-on-a-list-variable
-
thanks! figured it out