facecookのAPIについていろいろ調べていた。
とりあえず画像を投稿したり、likeをつけるにはPOSTメソッドで送ればいいみたい。


<form method='post' action='https://graph.facebook.com/me/feed'>
<table>
<tr><th>access_token:</th><td><input type='text' name='access_token' value='〜' /></td></tr>
<tr><th>link:</th><td><input type='text' name='link' value='http://xxx/yyy.img' /></td></tr>
</table><br />
<input type='submit' />
</form>


<br />
<form method='post' action='https://graph.facebook.com/{object_id}/likes'>
<table>
<tr><th>access_token:</th><td><input type='text' name='access_token' value='〜' /></td></tr>
</table><br />
<input type='submit' />
</form>