I know this has probably been asked before but having searched I havent quite found the answer to my own problem, just similar kinds of problems.
What I was to do is basically have my own Facebook user account wall updated with a new status each time I update my blog (which is a home brew system in PHP).
I followed the guide here : http://www.joeyrivera.com/2010/facebook-graph-api-app-easy-w-php-sdk/ which gave me a lot of good info but when using the examples it tries to post to the account I am logged in as using that browser or if I use a browser that isnt logged in I get the Facebook login screen.
I just want my blog to quietly send the update across to Facebook giving my profile ID number without asking for anything or popping anything up. I tried this :
$status = $facebook->api('/10000276075..../feed', 'POST', array('message' => 'Thank f___ its Friday!'));
Replacing the "me" part but it still pops up a login box.
Thanks for any help,
Rik