here is what i have been able to accomplish:
1.) redirect to get permissions and to login
2.) get access token for user
QString = "client_id=" & APPID & "redirect_uri=" & MYURL & "&client_secret=" & APPSEC & "&code=" & Auth_Code
bytArguments = System.Text.Encoding.ASCII.GetBytes("")
bytRetData = oWeb.UploadData("https://graph.facebook.com/oauth/access_token?" & QString, "POST", bytArguments)
Access_Code = Split(Split(System.Text.Encoding.ASCII.GetString(bytRetData), "&")(0), "=")(1)
here is where i get stumped with a 400 bad request:
I go to access the account for the user...which will only really be myself...and i get a 400 BAD REQUEST error.
bytArguments = System.Text.Encoding.ASCII.GetBytes("access_token=" & Access_Code)
Uri = "https://graph.facebook.com/me/accounts"
bytRetData = oWeb.UploadData(Uri, "POST", bytArguments)
results = System.Text.Encoding.ASCII.GetString(bytRetData)
With this said...WHAT AM I DOING WRONG???