Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here, I am using user id generated by facebook in place of appid . Am I correct here?? As I wanted to get access token with the help of user name and password for my application designed in windows forms. I am using below code to fetch it. Please, give me any better solution to fetch access token.

        string appId = userid.ToString(); 
        string[] extendedPermissions = new[] { "publish_stream", "offline_access" }; 
        var oauth = new FacebookOAuthClient { ClientId = appId };
        var parameters = new Dictionary<string, object> { 
        { "response_type", "token" },  { "display", "popup" } };
        if (extendedPermissions != null && extendedPermissions.Length > 0) 
        { 
            var scope = new StringBuilder(); 
            scope.Append(string.Join(",", extendedPermissions));
            parameters["scope"] = scope.ToString(); 
        }
        var loginUrl = oauth.GetLoginUrl(parameters);
        wbTestWindow.Navigate(loginUrl);

        // this webBrowser's related navigated function
        private void wbTestWindow_Navigated(object sender, WebBrowserNavigatedEventArgs e)
        {
        FacebookOAuthResult result; 
        if (FacebookOAuthResult.TryParse(e.Url, out result)) 
        { 
            if (result.IsSuccess) 
            { 
                var accesstoken = result.AccessToken;
            } 
            else
            { 
                var errorDescription = result.ErrorDescription; 
                var errorReason = result.ErrorReason; 
            }
        } 
    }
share|improve this question
   
What error are you getting? – Neil Knight Jan 3 at 11:55
@NeilKnight I am getting result as null !! – sainath sagar Jan 3 at 11:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.