@m4zuper
please see this flow:

as you can see, this is a loop on the followers of an influencer on IG, the async function is changing the SCRIPT_RESULT to success when scroll has worked, else it will become false and the loop ends
so, every time we scroll, we get the element content _aano that contains the followers and we post it to a php script that does the parsing and saving on a db...
if the influencer is big and has lot of followers, the loop might take hours and keep scrolling and loading content... so eventually, ._aano element html becomes bigger than 1,000,000 bytes and the php script does receive broken / partial the expected variables, that are shown below:

as you will notice, the post builder has first variables action=audience, type=follower, influencer=[[CURR_INFLUENCER]] and in the end, there is the captured_html that takes the value of [[CURRENT_FOLLOWERS]], that comes from the action "get element content"
from experimenting, I have seen that BAS uses the post vars in reverse order than defined, so it first posts the last var and then the rest and I noticed that the post string on the HTTP Sniffer, shows to truncate at 1,000,000 bytes, so the var captured_html does pass partially to my php and the rest vars are missing, resulting an empty response, which I now handle to stop parsing more, but it makes the whole process inefficient and partial
are there other ways to do this or how this BAS limit can be raised ?
thanks!