I am using Facebook JavaScript sdk to post photo to some fan page.Here's my code
<form enctype="multipart/form-data" method="post" action="https://graph.facebook.com/<page_id>/feed" target="ifram_name">
<input name="source" type="file" style="font-size:13px;" />
<input type="hidden" name="to" value="113342002047830"/>
<input type="hidden" name="access_token" value="user_accesstoken"/>
<input type="hidden" name="type" value="photo" />
</form>
It says "missing message or attachment".
I have also tried changing "action" to "https://graph.facebook.com//feed" but photo is then uploaded to user's album.
Can anybody tell what is missing in my code ?