var1 = 7200
var2 = 12
GET = http://website.com/page=
What I need is:
1. var1 / var2 = var3(600)
2. Make a GET request starting at 2 until 600. (http://website.com/page=<var3>)|(2-600)
var1 = 7200
var2 = 12
GET = http://website.com/page=
What I need is:
1. var1 / var2 = var3(600)
2. Make a GET request starting at 2 until 600. (http://website.com/page=<var3>)|(2-600)
umm do u mean u wanna make 598 requests in total or?
Declare a constant integer (call it counter) using the constant integer block and set it to 2.
Then write this
WHILE INTKEY @counter LessThan @var3
// Your request block using <counter> in the URL
counter++;
END
Yes. Iām parsing a website archive news section.
I will try this out and report back. Thank you for the help as always!