There is such a piece of code:
string resps = GET_http("https://api.vk.com/method/" + method + "?" + paramss + "=" + count + "&access_token=" + token); How to drive a GET request into a loop? The problem is that I cannot get data from the loop.
There is such a piece of code:
string resps = GET_http("https://api.vk.com/method/" + method + "?" + paramss + "=" + count + "&access_token=" + token); How to drive a GET request into a loop? The problem is that I cannot get data from the loop.
Source: https://ru.stackoverflow.com/questions/391071/
All Articles