Is it possible to use async and await to make asynchronous call to this API? I'm trying to call many actives at the same time and if a did it synchronous it takes a long time because the code needs to wait about 1,5 seconds for each active called.
I tried async/await but a got error, so I used threading library to work with threads, the code run but the values wasn't right.
Is it possible to use async and await to make asynchronous call to this API? I'm trying to call many actives at the same time and if a did it synchronous it takes a long time because the code needs to wait about 1,5 seconds for each active called.
I tried async/await but a got error, so I used threading library to work with threads, the code run but the values wasn't right.
Thanks!!