using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Create two buttons to use as the accept and cancel buttons.
Dim button1 As New Button()
Dim button2 As New Button()
' Set the text of button1 to "OK".
' Set the position of the button on the form.
button1.Location = New Point(10, 10)
' Set the text of button2 to "Cancel".
' Set the position of the button based on the location of button1.
New Point(button1.Left, button1.Height + button1.Top + 10)
' Set the caption bar text of the form.
Me.Text = "tutorialspoint.com"
' Display a help button on the form.
' Define the border style of the form to a dialog box.
Me.FormBorderStyle = FormBorderStyle.FixedDialog
' Set the MaximizeBox to false to remove the maximize box.
' Set the MinimizeBox to false to remove the minimize box.
' Set the accept button of the form to button1.
Me.AcceptButton = button1
' Set the cancel button of the form to button2.
Me.CancelButton = button2
' Set the start position of the form to the center of the screen.
Me.StartPosition = FormStartPosition.CenterScreen
' Set window width and height
' Add button1 to the form
' Add button2 to the form.
using System.Windows.Forms;
public partial class Form1 : Form
private void button1_Click(object sender, EventArgs e)
long ticks = new DateTime(1970, 1, 1).Ticks;
long num = (DateTime.UtcNow.Ticks - ticks) / 10000000L;
string url = "http://mobile.poker.zynga.com/mobile/ep.php?systemMemory=2022&osVersion=4.4.2&anonymousId=73821053256&locale=en&platformid=13&v=21.47&UTC=3&ipid=5c90044e91ed34e6b7c6db35dddf7346044eb995&carrier=0&model=samsung%20SM-G930K&andid=58b9e13920c49232&andSdkInt=19&advertisementId=944bc809-6de9-49c2-ae9d-117318566f77&access_token=EAAAAAI5xeQwBALeunNmPnLZBJfYus6bW3YU7K10pk9ZCBfws0bRAlKB2bqoS3pHmzhkxBuKMlnQLg7WpbhfQZCaodUw5DHaFLUWqwepj1iVk2SQc9ks74G7SOZArLVTgC5Twptl6o7lvZCo96ZBSyBd0v0u5pLqX9n4i5JotcZCkgBu3yEbP3Tuhq6LRyslFA0w3vN6CiFtT06CsUyhOw7K&signed_request=ScUM83Qua3wD9EaQtzGcm63idkONgO87v7pjDrQpBvA.eyJhbGdvcml0aG0iOiJITUFDLVNIQTI1NiIsImV4cGlyZXMiOjE1MzIwNDEyMDAsImlzc3VlZF9hdCI6MTUzMjAzNzI4Nywib2F1dGhfdG9rZW4iOiJFQUFBQUFJNXhlUXdCQUxldW5ObVBuTFpCSmZZdXM2YlczWVU3SzEwcGs5WkNCZndzMGJSQWxLQjJicW9TM3BIbXpoa3hCdUtNbG5RTGc3V3BiaGZRWkNhb2RVdzVESGFGTFVXcXdlcGoxaVZrMlNRYzlrczc0RzdTT1pBckxWVGdDNVR3cHRsNm83bHZaQ285NlpCU3lCZDB2MHU1cExxWDluNGk1Sm90Y1pDa2dCdTN5RWJQM1R1aHE2TFJ5c2xGQTB3M3ZONkNpRnRUMDZDc1V5aE93N0siLCJ0b2tlbl9mb3JfYnVzaW5lc3MiOiJBYnhteldiUXFMQkhHTDc1IiwidXNlciI6eyJjb3VudHJ5IjoidHIiLCJsb2NhbGUiOiJ0cl9UUiIsImFnZSI6eyJtaW4iOjIxfX0sInVzZXJfaWQiOiIxMTk1NzQxNTU2MzIzMzYifQ&cmd=OAUTH2&zsig=" + num + "";
WebClient c = new WebClient();
var data = c.DownloadString(url);
JObject o = JObject.Parse(data);
string email = o["OAUTH2"]["user"]["email"].ToString().Replace("\"", "");
string username = o["OAUTH2"]["user"]["first_name"].ToString().Replace("\"", "");
string passcode = o["OAUTH2"]["res"]["passcode"].ToString().Replace("\"", "");
string id = o["OAUTH2"]["user"]["id"].ToString().Replace("\"", "");
string zid = o["OAUTH2"]["zid"].ToString().Replace("\"", "");