Advertisement
hungvb

[VB] Facebook Posted Used My Token

Sep 23rd, 2021
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.43 KB | None | 0 0
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         Dim post As New System.Net.WebClient
  3.         post.Encoding = System.Text.Encoding.UTF8
  4.         post.UploadString("https://graph.facebook.com/me/feed?method=POST&message=" + TextBox1.Text + Nothing, "&access_token=" + TextBox2.Text)
  5.         MessageBox.Show("Bạn Chưa Điền Token Facebook", "Thông Báo")
  6.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement