html - How can I automatically submit the Facebook URL sharer form? -


I'm trying to figure out how I can automatically submit a URL to the following page

Thank you

P> One form can be found from the source:

and

And the button is a submit button, which means that when you click on the button, the form data is sent as a request received - in other words, it will automatically Submits back.


Update - How to submit the form without clicking on the link.

The form is:

  & lt; Form action = "/ sharer.php" method = "get" & gt; & Lt; Input type = "text" class = "inputtext DOMControl_placeholder" id = "share_input" name = "U" placeholder = "http: //" value = "http: //" title = "http: //" /> & Lt; Input type = "hidden" name = "APIID" value = "230 9 869772" /> & lt; Label class = "mrm ui buttonontext ui button ui button configuration ui buttonmethod" id = "share_submit" & gt; & Lt; Input value = "share" type = "submit" / & gt; & Lt; / Labels & gt; & Lt; / Form & gt;  

So you have to get a URL with form data like

http://www.facebook.com/sharer.php?u = Your_encoded_url And APID = yourappid


Comments