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`m using the script below for a FB "post to wall" function. Works great only problem on Andriod is the popup screen is really big. There must be an easy way to change it (?). Also can i determine the position of the screen?

    <div id='fb-root'></div>
<script src='http://connect.facebook.net/nl_NL/all.js'></script>
<p>1. <button onclick='postToFeed(); return false;'>Ja, ik doe weer mee!</button></p>
<p id='msg'></p>2. <a href="http://www.facebook.com/expertlemmer">Druk hier</a> om je deelname af te ronden.
<script>
  FB.init({appId: "467281319980067", status: true, cookie: true});

  function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      redirect_uri: 'http://ovllemmer.nl/expertaktie',
      link: 'http://www.expert.nl/lemmerwinaktie',
      picture: 'http://ovllemmer.nl/expertactie/images/expert100x100.jpg',
      name: 'Expert pakt uit in December',
      caption: 'Deze week een iPod + Dock!',
      description: 'Ga naar www.expert.nl/lemmerwinactie'
    };

    function callback(response) {
      document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
    }

    FB.ui(obj, callback);
  }

</script>
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.