Хочу выполнить код, но символ "+" не передается...
Отправляю так:
string code = ....;
string reqStr = string.Format(
"https://api.vk.com/method/execute?access_token={0}&code={1}&version=5.37", ACCESS_TOKEN,code);
WebClient webClient = new WebClient();
string photocount = webClient.DownloadString(reqStr);//количество фото в альбоме группы
Сам код (code):
var photos = API.photos.get({"owner_id":-35001375,"album_id":"210619562"}).items;
var offset = 1000;
while (offset < 20001)
{
photos=photos+ API.photos.get({ "owner_id":-35001375,"album_id":"210619562","offset":offset}).items;
offset = offset+1000;
}
return photos;