I've tried following along with this tutorial here:
https://www.youtube.com/watch?v=wNLAY_s6llY
I have tried using the Facebook Graph API, but there is NO documentation on how to use VB.NET along with the api.
Here is the code that I've tried to use:
Any help is greatly appreciated.
https://www.youtube.com/watch?v=wNLAY_s6llY
I have tried using the Facebook Graph API, but there is NO documentation on how to use VB.NET along with the api.
Here is the code that I've tried to use:
VB.NET:
dim a as new system.net.webclient
a.encoding = system.text.encoding.UTF8
a.uploadstring("https://graph.facebook.com/me/feed?method=POST&message=" + textbox2.text Nothing, "&access_token="+ textbox1.text)
Any help is greatly appreciated.