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>