I want to add a feature to my site that posts something on my users wall (with their approval of course) with a specific message. I've seen this with apps and such on Facebook but how can i do this on my site?
I found it! If anyone else wants to know, it's the following code! <html> <head> <title>My Facebook Login Page</title> </head> <body> <div id="fb-root"></div> <script> window.fbAsyncInit = function() { FB.init({ appId : 'YOUR_APP_ID', status : true, cookie : true, xfbml : true, oauth : true, }); FB.ui({ method: 'feed', message: 'Facebook for Websites is super-cool'}); }; (function(d){ var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;} js = d.createElement('script'); js.id = id; js.async = true; js.src = "//connect.facebook.net/en_US/all.js"; d.getElementsByTagName('head')[0].appendChild(js); }(document)); </script> </body> </html>