very thx man put in your examples go help many users =)
3 questions
1° how can i make a login and get my profile automatic?
here is the button to login
Sub facebookimage_Click
FB.PleaseWaitText = "Conectando ao Facebook..."
FB.Login(Array As String ("email"))
pegadadosface
End Sub
here is the sub to get results
Sub pegadadosface
Dim Result As FacebookResult = FB.Me("")
If Result.Success Then
idfacebook = Result.Map.Get("id")
nomecompletofacebook = Result.Map.Get("name")
If Result.Map.ContainsKey("email") Then
emailfacebook = Result.Map.Get("email")
Else
emailfacebook = "Email não informado"
End If
verificausuario
Else
Msgbox(Result.Message, "Ocorreu um erro ao efetuar login, tente novamente!")
End If
End Sub
ok i make this to try make automatic
1 click on login and i have profile
but dont work i need give 2 clicks at login
can i know if user is loged in and get profile automatic with no click again?
2° question
can i have the post result?
i m using this
Main.FB.PublishPost("testte ssss","
http://www.vallow.com.br/achouganhou/","
https://scontent-b-gru.xx.fbcdn.net...596_287665921407377_6485402691890065112_n.png","teste nome", "teste caption", "teste descricao aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
to share on face , and i want to add coins to users when user share
how can i get result if userposted = boolean
its possible know if user publish the post?
3° and on FB.PleaseWaitText = "Conectando ao Facebook..."
can u add the cancelable = false?
FB.PleaseWaitText = "Conectando ao Facebook..., false"
???
sorry for many questions *-*