mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
parent
59981c785b
commit
3c30b34b91
1 changed files with 308 additions and 159 deletions
|
|
@ -89,182 +89,331 @@ public class VkMessager : ChatBot
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal class VkLongPoolClient
|
internal class VkLongPoolClient
|
||||||
{
|
{
|
||||||
public VkLongPoolClient(string token, string botCommunityId, Action<string, string> onMessageReceivedCallback, IWebProxy webProxy = null)
|
/* VK Client*/
|
||||||
{
|
public VkLongPoolClient(string token, string botCommunityId, Action<string, string, string, string, string, string> onMessageReceivedCallback, IWebProxy webProxy = null)
|
||||||
Token = token;
|
|
||||||
BotCommunityId = botCommunityId;
|
|
||||||
OnMessageReceivedCallback = onMessageReceivedCallback;
|
|
||||||
ReceiverWebClient = new WebClient() { Proxy = webProxy, Encoding = Encoding.UTF8 };
|
|
||||||
SenderWebClient = new WebClient() { Proxy = webProxy, Encoding = Encoding.UTF8 };
|
|
||||||
|
|
||||||
Init();
|
|
||||||
StartLongPoolAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
private WebClient ReceiverWebClient { get; set; }
|
|
||||||
private WebClient SenderWebClient { get; set; }
|
|
||||||
private string Token { get; set; }
|
|
||||||
private int LastTs { get; set; }
|
|
||||||
private string Server { get; set; }
|
|
||||||
private string Key { get; set; }
|
|
||||||
private Action<string, string, string> OnMessageReceivedCallback { get; set; }
|
|
||||||
private string BotCommunityId { get; set; }
|
|
||||||
private Random rnd = new Random();
|
|
||||||
|
|
||||||
private void Init()
|
|
||||||
{
|
|
||||||
var jsonResult = CallVkMethod("groups.getLongPollServer", "group_id=" + BotCommunityId);
|
|
||||||
var data = Json.ParseJson(jsonResult);
|
|
||||||
|
|
||||||
Key = data.Properties["response"].Properties["key"].StringValue;
|
|
||||||
Server = data.Properties["response"].Properties["server"].StringValue;
|
|
||||||
LastTs = Convert.ToInt32(data.Properties["response"].Properties["ts"].StringValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendMessage(string chatId, string text, string keyboard = "", int random_id = 0)
|
|
||||||
{
|
|
||||||
if (random_id == 0)
|
|
||||||
{
|
{
|
||||||
random_id = rnd.Next();
|
Token = token;
|
||||||
|
BotCommunityId = botCommunityId;
|
||||||
|
OnMessageReceivedCallback = onMessageReceivedCallback;
|
||||||
|
ReceiverWebClient = new WebClient() { Proxy = webProxy, Encoding = Encoding.UTF8 };
|
||||||
|
SenderWebClient = new WebClient() { Proxy = webProxy, Encoding = Encoding.UTF8 };
|
||||||
|
|
||||||
|
Init();
|
||||||
|
StartLongPoolAsync();
|
||||||
}
|
}
|
||||||
|
private WebClient ReceiverWebClient { get; set; }
|
||||||
|
private WebClient SenderWebClient { get; set; }
|
||||||
|
private string Token { get; set; }
|
||||||
|
private int LastTs { get; set; }
|
||||||
|
private string Server { get; set; }
|
||||||
|
private string Key { get; set; }
|
||||||
|
private Action<string, string, string, string, string, string> OnMessageReceivedCallback { get; set; }
|
||||||
|
private string BotCommunityId { get; set; }
|
||||||
|
private Random rnd = new Random();
|
||||||
|
|
||||||
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + random_id + "&message=" + text + "&keyboard=" + keyboard);
|
/* Utils */
|
||||||
}
|
public string Utils_GetShortLink(string url)
|
||||||
|
{
|
||||||
public void SendMessageAndDocument(string chatId, string text, string file, string title, string keyboard = "", int random_id = 0)
|
string json = CallVkMethod("utils.getShortLink", "url=" + url);
|
||||||
{
|
var j = JsonConvert.DeserializeObject(json) as JObject;
|
||||||
if (random_id == 0)
|
var link = j["response"]["short_url"].ToString();
|
||||||
{
|
return link;
|
||||||
random_id = rnd.Next();
|
}
|
||||||
}
|
/* Docs */
|
||||||
|
public string Docs_GetMessagesUploadServer(string peer_id, string type, string file)
|
||||||
|
{
|
||||||
|
string string1 = CallVkMethod("docs.getMessagesUploadServer", "peer_id=" + peer_id + "&type=" + type);
|
||||||
|
string uploadurl = Regex.Match(string1, "\"upload_url\":\"(.*)\"").Groups[1].Value.Replace(@"\/", "/");
|
||||||
|
return uploadurl;
|
||||||
|
}
|
||||||
|
public string Docs_Upload(string url, string file)
|
||||||
|
{
|
||||||
var c = new WebClient();
|
var c = new WebClient();
|
||||||
//
|
var r2 = Encoding.UTF8.GetString(c.UploadFile(url, "POST", file));
|
||||||
var u = CallVkMethod("docs.getMessagesUploadServer", "peer_id=" + chatId + "&type=doc");
|
return r2;
|
||||||
var j = JsonConvert.DeserializeObject(u) as JObject;
|
|
||||||
//
|
|
||||||
var u2 = j["response"]["upload_url"].ToString();
|
|
||||||
var r2 = Encoding.UTF8.GetString(c.UploadFile(u2, "POST", file));
|
|
||||||
var j2 = JsonConvert.DeserializeObject(r2) as JObject;
|
|
||||||
//
|
|
||||||
var r3 = CallVkMethod("docs.save", "&file=" + j2["file"]
|
|
||||||
+ "&title=" + title);
|
|
||||||
var j3 = JsonConvert.DeserializeObject(r3) as JObject;
|
|
||||||
var at = "doc"+ j3["response"]["doc"]["owner_id"].ToString() + "_" + j3["response"]["doc"]["id"].ToString();
|
|
||||||
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + random_id + "&message=" + text + "&keyboard=" + keyboard + "&attachment=" + at);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendSticker(string chatId, int sticker_id, int random_id = 0)
|
|
||||||
{
|
|
||||||
if (random_id == 0)
|
|
||||||
{
|
|
||||||
random_id = rnd.Next();
|
|
||||||
}
|
}
|
||||||
|
public string Docs_Save(string file, string title)
|
||||||
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + random_id + "&sticker_id=" + sticker_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void OnlineGroup(bool enable = true)
|
|
||||||
{
|
|
||||||
if (enable)
|
|
||||||
CallVkMethod("groups.enableOnline", "group_id=" + BotCommunityId);
|
|
||||||
else
|
|
||||||
CallVkMethod("groups.disableOnline", "group_id=" + BotCommunityId);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void KickChatUser(string chat_id, string user_id)
|
|
||||||
{
|
|
||||||
CallVkMethod("messages.removeChatUser", "chat_id=" + chat_id + "&user_id=" + user_id + "&member_id=" + user_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public class Keyboard
|
|
||||||
{
|
|
||||||
public bool one_time = false;
|
|
||||||
public List<List<object>> buttons = new List<List<object>>();
|
|
||||||
public Keyboard(bool one_time2)
|
|
||||||
{
|
|
||||||
one_time = one_time2;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void AddButton(string label, string payload, string color)
|
|
||||||
{
|
{
|
||||||
buttons button = new Buttons(label, payload, color);
|
var j2 = JsonConvert.DeserializeObject(file) as JObject;
|
||||||
buttons.Add( new List<object>() { button });
|
return CallVkMethod("docs.save", "&file=" + j2["file"].ToString() + "&title=" + title);
|
||||||
}
|
}
|
||||||
|
public string Docs_GetSendAttachment(string file)
|
||||||
public class Buttons
|
|
||||||
{
|
{
|
||||||
public Action action;
|
var j3 = JsonConvert.DeserializeObject(file) as JObject;
|
||||||
public string color;
|
var at = "doc" + j3["response"]["doc"]["owner_id"].ToString() + "_" + j3["response"]["doc"]["id"].ToString();
|
||||||
public Buttons(string labe11, string payload1, string color2)
|
return at;
|
||||||
|
}
|
||||||
|
/* Groups */
|
||||||
|
public void Groups_Online(bool enable = true)
|
||||||
|
{
|
||||||
|
if (enable)
|
||||||
|
CallVkMethod("groups.enableOnline", "group_id=" + BotCommunityId);
|
||||||
|
else
|
||||||
|
CallVkMethod("groups.disableOnline", "group_id=" + BotCommunityId);
|
||||||
|
}
|
||||||
|
public string Groups_GetById_GetName(string group_id)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
action = new Action(labe11, payload1);
|
string js = CallVkMethod("groups.getById", "group_id=" + group_id);
|
||||||
color = color2;
|
var j3 = JsonConvert.DeserializeObject(js) as JObject;
|
||||||
|
string name = j3["response"][0]["name"].ToString();
|
||||||
|
return name;
|
||||||
|
} catch { return ""; }
|
||||||
|
}
|
||||||
|
/* Messages */
|
||||||
|
public void Messages_Kick_Group(string chat_id, string user_id)
|
||||||
|
{
|
||||||
|
if (user_id != BotCommunityId)
|
||||||
|
CallVkMethod("messages.removeChatUser", "chat_id=" + chat_id + "&member_id=" + "-" + user_id);
|
||||||
|
}
|
||||||
|
public void Messages_Kick_User(string chat_id, string user_id)
|
||||||
|
{
|
||||||
|
CallVkMethod("messages.removeChatUser", "chat_id=" + chat_id + "&user_id=" + user_id + "&member_id=" + user_id);
|
||||||
|
}
|
||||||
|
public void Messages_SetActivity(string chatId, string type = "typing")
|
||||||
|
{
|
||||||
|
string id3 = chatId;
|
||||||
|
id3 = id3.Substring(1);
|
||||||
|
int ind = Convert.ToInt32(id3);
|
||||||
|
CallVkMethod("messages.setActivity", "user_id=" + BotCommunityId + "&peer_id=" + chatId + "&group_id=" + "&type=" + type + "&group_id=" + BotCommunityId);
|
||||||
|
CallVkMethod("messages.setActivity", "user_id=" + BotCommunityId + "&peer_id=" + ind + "&type=" + type + "&group_id=" + BotCommunityId);
|
||||||
|
}
|
||||||
|
public string Messages_GetInviteLink(string chatId, bool reset)
|
||||||
|
{
|
||||||
|
string json = "";
|
||||||
|
if (reset == true)
|
||||||
|
json = CallVkMethod("messages.getInviteLink", "peer_id=" + chatId + "&group_id=" + BotCommunityId + "&reset=1");
|
||||||
|
else
|
||||||
|
json = CallVkMethod("messages.getInviteLink", "peer_id=" + chatId + "&group_id=" + BotCommunityId);
|
||||||
|
var j = JsonConvert.DeserializeObject(json) as JObject;
|
||||||
|
var link = j["response"]["link"].ToString();
|
||||||
|
return link;
|
||||||
|
}
|
||||||
|
/* Messages Send */
|
||||||
|
public void Messages_Send_Text(string chatId, string text)
|
||||||
|
{
|
||||||
|
string reply = CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&message=" + text);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(reply) as JObject;
|
||||||
|
if (j["error"]["error_code"].ToString() != "")
|
||||||
|
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&message=" + text);
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
public void Messages_Send_Keyboard(string chatId, Keyboard keyboard)
|
||||||
|
{
|
||||||
|
string kb = keyboard.GetKeyboard();
|
||||||
|
string reply = CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&keyboard=" + kb);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(reply) as JObject;
|
||||||
|
if (j["error"]["error_code"].ToString() != "")
|
||||||
|
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&keyboard=" + kb);
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
public void Messages_Send_TextAndKeyboard(string chatId, string text, Keyboard keyboard)
|
||||||
|
{
|
||||||
|
string kb = keyboard.GetKeyboard();
|
||||||
|
string reply = CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&message=" + text + "&keyboard=" + kb);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(reply) as JObject;
|
||||||
|
if (j["error"]["error_code"].ToString() != "")
|
||||||
|
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&message=" + text + "&keyboard=" + kb);
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
public void Messages_Send_Sticker(string chatId, int sticker_id)
|
||||||
|
{
|
||||||
|
string reply = CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&sticker_id=" + sticker_id);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(reply) as JObject;
|
||||||
|
if (j["error"]["error_code"].ToString() != "")
|
||||||
|
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&sticker_id=" + sticker_id);
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
public void Messages_Send_TextAndDocument(string chatId, string text, string file, string title)
|
||||||
|
{
|
||||||
|
string u2 = Docs_GetMessagesUploadServer(chatId, "doc", file);
|
||||||
|
string r2 = Docs_Upload(u2, file);
|
||||||
|
string r3 = Docs_Save(r2, title);
|
||||||
|
string at = Docs_GetSendAttachment(r3);
|
||||||
|
string reply = CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&message=" + text + "&attachment=" + at);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(reply) as JObject;
|
||||||
|
if (j["error"]["error_code"].ToString() != "")
|
||||||
|
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + "&message=" + text + "&attachment=" + at);
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
public void Messages_Send_Custom(string chatId, string custom)
|
||||||
|
{
|
||||||
|
string reply = CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + custom);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(reply) as JObject;
|
||||||
|
if (j["error"]["error_code"].ToString() != "")
|
||||||
|
CallVkMethod("messages.send", "peer_id=" + chatId + "&random_id=" + rnd.Next() + custom);
|
||||||
|
} catch { }
|
||||||
|
}
|
||||||
|
/* Messages GetConversationMembers*/
|
||||||
|
public int Messages_GetConversationMembers_GetCount_v1(string chatId)
|
||||||
|
{
|
||||||
|
var json = CallVkMethod("messages.getConversationMembers", "peer_id=" + chatId + "&group_id=" + BotCommunityId);
|
||||||
|
var j = JsonConvert.DeserializeObject(json) as JObject;
|
||||||
|
int u2 = int.Parse(j["response"]["count"].ToString());
|
||||||
|
return u2;
|
||||||
|
}
|
||||||
|
public string Messages_GetConversationMembers_GetProfiles(string chatId)
|
||||||
|
{
|
||||||
|
var json = CallVkMethod("messages.getConversationMembers", "peer_id=" + chatId + "&group_id=" + BotCommunityId);
|
||||||
|
string ids = "";
|
||||||
|
JObject json1 = JObject.Parse(json);
|
||||||
|
IList<JToken> results = json1["response"]["profiles"].Children().ToList();
|
||||||
|
foreach (JToken result in results)
|
||||||
|
{
|
||||||
|
string id = result["id"].ToString();
|
||||||
|
if (!id.Contains("-"))
|
||||||
|
ids += id + ", ";
|
||||||
|
}
|
||||||
|
return ids;
|
||||||
|
}
|
||||||
|
public string Messages_GetConversationMembers_GetItems_member_id(string chatId)
|
||||||
|
{
|
||||||
|
var json = CallVkMethod("messages.getConversationMembers", "peer_id=" + chatId + "&group_id=" + BotCommunityId);
|
||||||
|
string ids = "";
|
||||||
|
JObject json1 = JObject.Parse(json);
|
||||||
|
IList<JToken> results = json1["response"]["items"].Children().ToList();
|
||||||
|
foreach (JToken result in results)
|
||||||
|
{
|
||||||
|
string id = result["member_id"].ToString();
|
||||||
|
if (!id.Contains("-"))
|
||||||
|
ids += id + ", ";
|
||||||
|
}
|
||||||
|
return ids;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Keyboard
|
||||||
|
{
|
||||||
|
public bool one_time = false;
|
||||||
|
public List<List<object>> buttons = new List<List<object>>();
|
||||||
|
public bool inline = false;
|
||||||
|
public Keyboard(bool one_time2, bool line = false)
|
||||||
|
{
|
||||||
|
if (line == true && one_time2 == true)
|
||||||
|
one_time2 = false;
|
||||||
|
|
||||||
|
one_time = one_time2;
|
||||||
|
inline = line;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Action
|
public void AddButton(string label, string payload, string color)
|
||||||
{
|
{
|
||||||
public string type;
|
Buttons button = new Buttons(label, payload, color);
|
||||||
public string payload;
|
buttons.Add(new List<object>() { button });
|
||||||
public string label;
|
}
|
||||||
public Action(string label3, string payload3)
|
public string GetKeyboard()
|
||||||
|
{
|
||||||
|
return JsonConvert.SerializeObject(this, Formatting.Indented); ;
|
||||||
|
}
|
||||||
|
public class Buttons
|
||||||
|
{
|
||||||
|
public Action action;
|
||||||
|
public string color;
|
||||||
|
public Buttons(string labe11, string payload1, string color2)
|
||||||
{
|
{
|
||||||
type = "text";
|
action = new Action(labe11, payload1);
|
||||||
payload = "{\"button\": \"" + payload3 + "\"}";
|
color = color2;
|
||||||
label = label3;
|
}
|
||||||
|
|
||||||
|
public class Action
|
||||||
|
{
|
||||||
|
public string type;
|
||||||
|
public string payload;
|
||||||
|
public string label;
|
||||||
|
public Action(string label3, string payload3)
|
||||||
|
{
|
||||||
|
type = "text";
|
||||||
|
payload = "{\"button\": \"" + payload3 + "\"}";
|
||||||
|
label = label3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private void StartLongPoolAsync()
|
/* LoongPool */
|
||||||
{
|
private void Init()
|
||||||
Task.Factory.StartNew(() =>
|
{
|
||||||
{
|
var jsonResult = CallVkMethod("groups.getLongPollServer", "group_id=" + BotCommunityId);
|
||||||
while (true)
|
var data = Json.ParseJson(jsonResult);
|
||||||
{
|
|
||||||
var baseUrl = String.Format("{0}?act=a_check&version=2&wait=25&key={1}&ts=", Server, Key);
|
|
||||||
|
|
||||||
var data = ReceiverWebClient.DownloadString(baseUrl + LastTs);
|
Key = data.Properties["response"].Properties["key"].StringValue;
|
||||||
var messages = ProcessResponse(data);
|
Server = data.Properties["response"].Properties["server"].StringValue;
|
||||||
|
LastTs = Convert.ToInt32(data.Properties["response"].Properties["ts"].StringValue);
|
||||||
|
}
|
||||||
|
private void StartLongPoolAsync()
|
||||||
|
{
|
||||||
|
Task.Factory.StartNew(() =>
|
||||||
|
{
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string baseUrl = String.Format("{0}?act=a_check&version=2&wait=25&key={1}&ts=", Server, Key);
|
||||||
|
var data = ReceiverWebClient.DownloadString(baseUrl + LastTs);
|
||||||
|
var messages = ProcessResponse(data);
|
||||||
|
|
||||||
foreach (var message in messages)
|
foreach (var message in messages)
|
||||||
{
|
{
|
||||||
OnMessageReceivedCallback(message.Item1, message.Item2, message.Item3);
|
OnMessageReceivedCallback(message.Item1, message.Item2, message.Item3, message.Item4, message.Item5, message.Item6);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private IEnumerable<Tuple<string, string, string>> ProcessResponse(string jsonData)
|
}
|
||||||
{
|
catch { }
|
||||||
var data = Json.ParseJson(jsonData);
|
}
|
||||||
if (data.Properties.ContainsKey("failed")) // Update Key on Server Error
|
});
|
||||||
Init();
|
}
|
||||||
|
|
||||||
LastTs = Convert.ToInt32(data.Properties["ts"].StringValue);
|
private IEnumerable<Tuple<string, string, string, string, string, string>> ProcessResponse(string jsonData)
|
||||||
|
{
|
||||||
|
var j = JsonConvert.DeserializeObject(jsonData) as JObject;
|
||||||
|
var data = Json.ParseJson(jsonData);
|
||||||
|
if (data.Properties.ContainsKey("failed"))
|
||||||
|
{
|
||||||
|
Init();
|
||||||
|
}
|
||||||
|
LastTs = Convert.ToInt32(data.Properties["ts"].StringValue);
|
||||||
|
var updates = data.Properties["updates"].DataArray;
|
||||||
|
var messages = new List<Tuple<string, string, string, string, string, string>>();
|
||||||
|
foreach (var str in updates)
|
||||||
|
{
|
||||||
|
if (str.Properties["type"].StringValue != "message_new") continue;
|
||||||
|
|
||||||
var updates = data.Properties["updates"].DataArray;
|
var msgData = str.Properties["object"].Properties;
|
||||||
var messages = new List<Tuple<string, string, string>>();
|
|
||||||
foreach (var str in updates)
|
|
||||||
{
|
|
||||||
if (str.Properties["type"].StringValue != "message_new") continue;
|
|
||||||
|
|
||||||
var msgData = str.Properties["object"].Properties;
|
var id = msgData["from_id"].StringValue;
|
||||||
|
var userId = msgData["from_id"].StringValue;
|
||||||
|
var peer_id = msgData["peer_id"].StringValue;
|
||||||
|
string event_id = "";
|
||||||
|
var msgText = msgData["text"].StringValue;
|
||||||
|
var conversation_message_id = msgData["conversation_message_id"].StringValue;
|
||||||
|
|
||||||
var userId = msgData["from_id"].StringValue;
|
messages.Add(new Tuple<string, string, string, string, string, string>(userId, peer_id, msgText, conversation_message_id, id, event_id));
|
||||||
var peer_id = msgData["peer_id"].StringValue;
|
}
|
||||||
var msgText = msgData["text"].StringValue;
|
|
||||||
|
|
||||||
messages.Add(new Tuple<string, string, string>(userId, peer_id, msgText));
|
return messages;
|
||||||
}
|
}
|
||||||
|
|
||||||
return messages;
|
public string CallVkMethod(string methodName, string data)
|
||||||
}
|
{
|
||||||
private string CallVkMethod(string methodName, string data)
|
try
|
||||||
{
|
{
|
||||||
var url = String.Format("https://api.vk.com/method/{0}?v=5.122&access_token={1}&{2}", methodName, Token, data);
|
var url = String.Format("https://api.vk.com/method/{0}?v=5.122&access_token={1}&{2}", methodName, Token, data);
|
||||||
var jsonResult = SenderWebClient.DownloadString(url);
|
var jsonResult = SenderWebClient.DownloadString(url);
|
||||||
|
|
||||||
return jsonResult;
|
return jsonResult;
|
||||||
}
|
}
|
||||||
|
catch { return String.Empty; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue