Just noticed that the "LastVersion" file in the profile folder, as the name suggests, gets updated when the profile is opened with (another version of) BAS e.g. from 114.0.5735.91 to 117.0.5938.63. Therefore it's not suitable for our need to determine the original version of which a profile was created.
But at least can be said what was the latest BAS version that worked with it ;)
Repeat get request
-
What do you need?
-
let data = {
arr: Array.from({ length: 10 }, () => Math.floor(Math.random() * 100)),
str: randomStr(20),
obj: {
foo: 'bar',
num: 42,
nested: {
a: 'b',
c: 'd'
}
}
};function recursiveTraversal(obj, depth = 0) { if (typeof obj !== 'object' || obj === null) return; for (const key in obj) { console.log(' '.repeat(depth) + key + ':', obj[key]); recursiveTraversal(obj[key], depth + 1); } } -
@isaacjaco49111 I have a get request I am doing and it returns as pending until the api is ready and once the api is ready it returns a success in the get results data. Trying to figure out how to loop the get request to continue running until it returns a success.
-
yes the code is supplied
-
@genericname1 thank you. Is this inputted via a script task immediately after my get request? Sorry very new to BAS.