- Регистрация
- 23.09.2016
- Сообщения
- 204
- Благодарностей
- 7
- Баллы
- 18
string img = project.Variables["img_pk"].Value;
string strToken = project.Variables["bot_token"].Value;
string strChatId = project.Variables["chat_id"].Value;
string proxy = "";
string message = project.Variables["text"].Value;
string url = project.Variables["url_t"].Value;
var knopka = "{\"inline_keyboard\": [[{\"text\": \"Купить на ЯМаркете\", \"url\": \""+url+"\"}]]}";
string mode = "&parse_mode=Html";
string data = "--8d769bc78125cd4\n";
data += string.Format("Content-Disposition: form-data; name=\"photo\"; filename=\"{0}\"\n", img);
data += "Content-Type: application/octet-stream\n";
data += img;
string resRequest = ZennoPoster.HttpPost(
"https://api.telegram.org/bot" + strToken + "/sendPhoto?chat_id=" + strChatId+"&caption="+message+"&parse_mode=HTML&reply_markup="+knopka+mode,
data,"multipart/form-data",proxy,"UTF-8",ZennoLab.InterfacesLibrary.Enums.Http.ResponceType.HeaderAndBody,
30000,"","Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0",true,5,
new[] {"Host: api.telegram.org"});
return resRequest;
Отправляю пост с помощью такого кода. Отправляет 3-4 поста и потом перестает отправлять через зеннопостер, через прожектмакер отправляет...
Всю голову сломал в чем может быть причина!
string strToken = project.Variables["bot_token"].Value;
string strChatId = project.Variables["chat_id"].Value;
string proxy = "";
string message = project.Variables["text"].Value;
string url = project.Variables["url_t"].Value;
var knopka = "{\"inline_keyboard\": [[{\"text\": \"Купить на ЯМаркете\", \"url\": \""+url+"\"}]]}";
string mode = "&parse_mode=Html";
string data = "--8d769bc78125cd4\n";
data += string.Format("Content-Disposition: form-data; name=\"photo\"; filename=\"{0}\"\n", img);
data += "Content-Type: application/octet-stream\n";
data += img;
string resRequest = ZennoPoster.HttpPost(
"https://api.telegram.org/bot" + strToken + "/sendPhoto?chat_id=" + strChatId+"&caption="+message+"&parse_mode=HTML&reply_markup="+knopka+mode,
data,"multipart/form-data",proxy,"UTF-8",ZennoLab.InterfacesLibrary.Enums.Http.ResponceType.HeaderAndBody,
30000,"","Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0",true,5,
new[] {"Host: api.telegram.org"});
return resRequest;
Отправляю пост с помощью такого кода. Отправляет 3-4 поста и потом перестает отправлять через зеннопостер, через прожектмакер отправляет...
Всю голову сломал в чем может быть причина!