Tell me, maybe someone has already come across a similar problem and knows where to look an example. It is necessary to post the news from the site (there is RSS) via CURL to classmates page. With a reference and picture.
Answer 1, Authority 100%
Well, here is already clean autocoptering of the Crook form, by the POST method. Here is a piece of code:
$ contract = "[email protected]& pass = 12345"; // Request Parameters
...
$ ch = curl_init ();
curl_setopt ($ ch, curlopt_url, "https://accounts.google.com/serviceLogin");
CURL_SETOPT ($ CH, CURLOPT_POST, 1); // specify the data sending method
CURL_SETOPT ($ CH, CURLOPT_POSTFIELDS, $ CONT); // POST DATA
$ result = curl_exec ($ CH);
if ($ result) echo ("Ready!"); ELSE ECHO ("NO ...");
CURL_CLOSE ($ CH);