-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
48 lines (41 loc) · 1.42 KB
/
Form1.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AuctionerMTG
{
public partial class AuthorizationForm : Form
{
public AuthorizationForm()
{
InitializeComponent();
}
private void AuthorizationForm_Load(object sender, EventArgs e)
{
GetToken.DocumentCompleted += GetToken_DocumentCompleted;
GetToken.Navigate("https://oauth.vk.com/authorize?client_id=" + 1939911 + "&display=page&redirect_uri=https://oauth.vk.com/blank.html&scope=friends&response_type=token&v=5.52");
}
private void GetToken_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (GetToken.Url.ToString().IndexOf("access_token=") != -1)
{
GetUserToken();
}
}
private void GetUserToken()
{
char[] Symbols = { '=', '&' };
string[] URL = GetToken.Url.ToString().Split(Symbols);
File.WriteAllText("UserInf.txt", URL[1] + "\n");
File.AppendAllText("UserInf.txt", URL[5]);
this.Visible = false;
}
private void GetToken_DocumentCompleted_1(object sender, WebBrowserDocumentCompletedEventArgs e) { }
}
}