Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make facebook integration in my apps. but an error ocurs.this is my whole code: mainpage.xaml.cs:

  using Facebook;
    using System.Text;

    namespace facebook_windows_phone_sample
    {
        public partial class MainPage : PhoneApplicationPage
        {
            private string _accessToken;
            private WebBrowser _webBrowser;
            public MainPage()
            {
                InitializeComponent();
                _webBrowser = new WebBrowser();
                this.Loaded += new RoutedEventHandler(MainPage_Loaded);
            }

        private void MainPage_Loaded(object sender, RoutedEventArgs e)
        {
            string appId = "";
            //List of all the permissions you want to have access to
            //You can get the list of possiblities from here
            //http://developers.facebook.com/tools/explorer/
            string[] extendedPermissions = new[] { "publish_stream", "offline_access", "user_groups" };
            var oauth = new FacebookOAuthClient { AppId = appId };
            var parameters = new Dictionary<string, object>
            {
            { "responce_type" , "token" },
            { "display" , "touch" }
            };
            if (extendedPermissions != null && extendedPermissions.Length == 0)
            {
                var scope = new StringBuilder();
                scope.Append(string.Join(",", extendedPermissions));
                parameters["scope"] = scope.ToString();
            }
            var loginUrl = oauth.GetLoginUrl(parameters);
            ContentPanel.Children.Add(_webBrowser);
            _webBrowser.Navigated += _webBrowser_Navigated;
            _webBrowser.Navigate(loginUrl);
        }

        private void _webBrowser_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
        {
            FacebookOAuthResult results;
            if (FacebookOAuthResult.TryParse(e.Uri.AbsoluteUri, out results))
            {
                if (results.IsSuccess)
                {
                    _accessToken = results.AccessToken;
                    MessageBox.Show(_accessToken);
                    _webBrowser.Visibility = System.Windows.Visibility.Collapsed;
                }
                else
                {
                    var errorDescription = results.ErrorDescription;
                    var errorReason = results.ErrorReason;
                    MessageBox.Show(errorReason + "" + errorDescription);
                }
            }
        }


    }
}

When I run this application this error occurs:

An exception of type 'System.ArgumentNullException' occurred in System.Windows.ni.dll but was not handled in user code

at MessageBox.Show(_accessToken); because of the accesstoken is null. please help me. Thank you

share|improve this question

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.