2013-03-19 23 views
0

弗朗這裏https://github.com/facebook-csharp-sdk/facebook-winforms-sample將一些類似的代碼parameters.client_idExpandoObject在vb.net不同的工作,然後在C#

這裏的心不是acseptig代碼段巡航能力的IM問題

Private Function GenerateLoginUrl(ByVal appId As String, ByVal extendedPermissions As String) As Uri 
     Dim parameters As New ExpandoObject() = 
     parameters.client_id = appId 
     parameters.redirect_uri = "https://www.facebook.com/connect/login_success.html" 

     ' The requested response: an access token (token), an authorization code (code), or both (code token). 
     parameters.response_type = "token" 

     ' list of additional display modes can be found at http://developers.facebook.com/docs/reference/dialogs/#display 
     parameters.display = "popup" 

     ' add the 'scope' parameter only if we have extendedPermissions. 
     If Not String.IsNullOrWhiteSpace(extendedPermissions) Then 
      parameters.scope = extendedPermissions 
     End If 

     ' when the Form is loaded navigate to the login url. 
     Return _fb.GetLoginUrl(parameters) 
    End Function 

回答

0

嘗試刪除等號後在行末Dim parameters As New ExpandoObject()