我在一星期的面对面认证上进行了挖掘。 我走过许多东西,例如面纱——连接、Facebook C# SDK从《刑法》和其他与现在绝对的面纱连接的方法。 http://developers.facebook.com 多次 我确实能够有一个 log子,利用新的和标准图表APIC字眼获得用户信息。 印有 Java。
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
var name = response.name
var username = response.username
var gender = response.gender
在另一个世界,我有Login控制和作为表格认证管理整个网站。
Protected Sub Login1_Authenticate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate
Dim userName As String = Login1.UserName
Dim password As String = Login1.Password
Dim result As Boolean = UserLogin(userName, password)
If (result) Then
e.Authenticated = True
Else
e.Authenticated = False
End If
End Sub
Private Function UserLogin(ByVal userName As String, ByVal password As String) As Boolean
//validate user // if valid, return true
//return false if invalid user
End
我可以从现有网站上删除所有形式认证。 应在网站上添加“Facebooklogin”的标记。 现在,我看不到的一点是......。
- How to authenticate the asp.net Form authentication when someone Login to the website using facebook Login.
- How do I pass all the value in the javascript to aspx.vb to connect to database and store the information.
我理解,我需要在数据库中设立一个新的表格,可能称为FacebookUsers。 但是,我可以想出一种办法,面对认证和作为p.netLogin控制来共同努力。 我的网址是VB。 净值。