Web Rest Request help

Hi all,

is that normal :confused: ?

every request is appended… and the 20th request has got the result after 10 seconds???

Where am I failing?

Client-side with no async calls?
My server( c# Kestrel) is mono thread ( exists) ?

Can you supply the code?

That would happen if your code awaits a series of calls sequentially. Could that be the case?

await Promise.all([]) will solve it then

not related to the actual question…

the token you are sending via URL parameters would be better placed in a header…

You can also improve performance by using HTTPS / H2 / SPDY to deliver the content. But in this case, I think Maxims remark is probably right.