【发布时间】:2016-04-26 06:33:59
【问题描述】:
我尝试使用自定义键盘创建消息。所以我发送请求
reply_markup = {"keyboard":[["1"],["2"]],"resize_keyboard":"True","one_time_keyboard":"True"}
但是,它不起作用。
我尝试了所有的 Content-Type:
- application/x-www-form-urlencoded(使用默认创建消息 键盘)
- application/json(使用默认键盘创建消息)
- multipart/form-data(根本不起作用,尽管this Post)
我还尝试通过 2 种不同的方式发送消息。这段代码有什么问题?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Net;
namespace DutyReminder
{
class Program
{
static void Main(string[] args)
{
string message = "message";
string message1 = "message1";
string botid = "165749848:AAGtjn42bajF-WxdKosTF07sLwJPYlqiDZE";
string chatid = "38651047";
Sender.send("", "https://api.telegram.org/bot" + botid + "/sendmessage?chat_id=" + chatid + "&text=" + message + "&reply_markup={\"keyboard\":[[\"1\"],[\"2\"]],\"resize_keyboard\":\"True\",\"one_time_keyboard\":\"True\"}");
Sender.HttpPost("https://api.telegram.org/bot" + botid + "/sendmessage?chat_id=" + chatid + "&text=" + message1 + "&reply_markup={\"keyboard\":[[\"1\"],[\"2\"]],\"resize_keyboard\":\"True\",\"one_time_keyboard\":\"True\"}", "");
}
}
static class Sender
{
static public void send(string message, string url)
{
// Create a request using a URL that can receive a post.
WebRequest request = WebRequest.Create(url);
// Set the Method property of the request to POST.
request.Method = "POST";
// Create POST data and convert it to a byte array.
//string postData = "{\"value1\":\"" + message + "\"}";
string postData = message;
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";
// Set the ContentLength property of the WebRequest.
// request.ContentLength = byteArray.Length;
// Get the request stream.
Stream dataStream = request.GetRequestStream();
// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);
// Close the Stream object.
dataStream.Close();
// Get the response.
WebResponse response = request.GetResponse();
// Display the status.
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
// Get the stream containing content returned by the server.
dataStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);
// Read the content.
string responseFromServer = reader.ReadToEnd();
// Display the content.
Console.WriteLine(responseFromServer);
// Clean up the streams.
reader.Close();
dataStream.Close();
response.Close();
}
static public string HttpPost(string URI, string Parameters)
{
System.Net.WebRequest req = System.Net.WebRequest.Create(URI);
// req.Proxy = new System.Net.WebProxy(ProxyString, true);
//Add these, as we're doing a POST
req.ContentType = "application/x-www-form-urlencoded";
req.Method = "POST";
//We need to count how many bytes we're sending. Post'ed Faked Forms should be name=value&
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(Parameters);
req.ContentLength = bytes.Length;
System.IO.Stream os = req.GetRequestStream();
os.Write(bytes, 0, bytes.Length); //Push it out there
os.Close();
System.Net.WebResponse resp = req.GetResponse();
if (resp == null) return null;
System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream());
return sr.ReadToEnd().Trim();
}
}
}
【问题讨论】:
-
你得到什么错误?也许您应该在代码中添加 try-catch-Blocks 以获得详细的错误消息。
-
没有错误,但是也没有自定义键盘f6.s.qip.ru/echeMYh9.png 好像是电报忽略reply_markup参数。
-
那么你得到了什么回应?我想,第一个问题是,是通信问题还是指挥问题。
-
我得到响应:{"ok":true,"result":{"message_id":65,"from":{"id":165749848,"first_name":"Duty","用户名":"DutyBot"},"chat":{"id":38651047,"first_name":"\u0413\u0440\u0438\u0448\u0430","type":"private"},"date":1453290235 ,"text":"message1"}} 如果将使用
request.ContentType = "multipart/form-data"作为推荐的here,则不会发送任何消息,我将一无所获。 -
我找到了问题的解决方案。我应该使用 "resize_keyboard\":\"true\" 而不是 resize_keyboard\":\"True\"。
标签: c# bots telegram telegram-bot