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.

I am using javascript SDK to implement feed functionality. Here is my problem, if user is logged-in and clicked on share button facebook asking log-in credentials in IE8 . In IE9 working fine

i am using this code

FB.init({appId: "416595358373189",show_error:true, status: true, cookie: true});

  function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      link: 'https://developers.facebook.com/docs/reference/dialogs/',
      picture: 'http://fbrell.com/f8.jpg',
      name: 'Facebook Dialogs',
      caption: 'Reference Documentation',
      description: 'Using Dialogs to interact with users.'
    };

    FB.ui(obj, callback);
  }

    function callback(response) 
{

    }
share|improve this question
You are using the c# and the java SDK in javascript? think not? – Nanne Jun 8 '12 at 10:13
iam using the above javascript in my page – Parthi Jun 8 '12 at 12:10
Ok, I meant "why did you tag it with those tags", but nevermind. – Nanne Jun 8 '12 at 12:10
i got this code from developers.facebook.com/docs/reference/dialogs/feed – Parthi Jun 8 '12 at 12:13
this is the first question i'm posting . so that i confused . If you have solution plese let me know – Parthi Jun 8 '12 at 12:19

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.