-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
70 lines (58 loc) · 2.48 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
/*742343553 Ltybcrf159632*/
/*672880971*/
namespace triton1
{
class Program
{
static void Main(string[] args)
{
// GUID g = new GUID();
string Login = "742343553";//"672880971";//"742343553";
string Pwd = "Ltybcrf159632";
string response = "";
string message = "";
Console.WriteLine("-------------------------------1 step - ClientLogin ----------------------");
response = http_sender.POST("https://api.login.icq.net/auth/clientLogin", "clientName=Mail.ru%20Windows%20ICQ&clientVersion=10.0.1999&devId=ic1nmMjqg7Yu-0hL&f=json&pwd="+Pwd+"&r=dce7ba59-bf6e-4daa-ad63-67e04799dd6b&s=" + Login + "&tokenType=longterm");
Console.WriteLine(response);
Console.WriteLine("-------------------------------2 step - StartSession ----------------------");
StartSession start = new StartSession(response);
response = http_sender.POST("https://api.icq.net/aim/startSession", start.getStrPack());
Console.WriteLine(response);
Console.WriteLine("-------------------------------3 step - fetchBaseURL ----------------------");
Fetch.getContactList(response);
Fetch.FetchEvent();
Console.WriteLine("-------------------------------4 step - setTimeZone ----------------------");
http_sender.GetAsync(setTimeZone.initTimeZone(response));
Console.WriteLine(http_sender.response);
//Console.WriteLine("-------------------------------5 step - sendMessage ----------------------");
//response = http_sender.POST("https://api.icq.net/im/sendIM", sendData.getDataMesssage(response, "online"));
// Console.WriteLine(response);
#region MainLoop
Fetch.AsyncUpdateState();
do
{
message = Console.ReadLine();
if (message.Equals("exit"))
{
Fetch.isWork = false;
Thread.Sleep(1000);
Console.WriteLine(EndSession.end_session());
}
else
{
sendData.sendMessage(message, "672880971");
}
} while (!message.Equals("exit"));
#endregion
Console.WriteLine("-------------------------------6 step - EndSession ----------------------");
Console.ReadKey();
}
}
}