I have simple html page and need to post data (title/text) from that page to my (I’m logged in) FB wall
<html>
<head>
<title>Send the post to FB</title>
</head>
<body>
<div>
Title: <input type="text" id="tbTitle" /><br />
Text: <input type="text" id="tbPostText" /><br />
<input type="button" value="Send to FB Wall" />
</div>
</body>
</html>
I read http://developers.facebook.com/docs/reference/api/ but there is not simple code how to do that. Who can help me with solution. Thank you!
I find the solution:
just grab values from text boxes and pass them into script described below:
http://developers.facebook.com/docs/reference/dialogs/feed/