Php uses curl to simulate logon to Renren (on-campus) and curl on-campus. Php uses curl to simulate logon to Renren (on-campus). curl $ login_urlpassport.renren.comPLogin.do; $ post_fields [email] XXXX; $ post_fields [password] XXXX; $ post _ php simulates logon to Renren (on-campus) network using curl, and curl on-campus
$ Login_url =' http://passport.renren.com/PLogin.do '; $ Post_fields ['email'] = 'xxxx'; $ post_fields ['password'] = 'xxxx '; $ post_fields ['url url'] = 'http % 3A % 2F % 2Fhome.renren.com % 2FHome. do '; $ post_fields ['domain'] = 'renren. com '; // The cookie file is stored in the temp folder of the website root directory $ cookie_file = tempnam ('. /temp ', 'cookies'); $ ch = curl_init ($ login_url); curl_setopt ($ ch, CURLOPT_USERAGENT, 'mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv: 1.9.1.5) Gecko/20091102 Firefox/3.5.5 '); curl_setopt ($ ch, CURLOPT_HEADER, 0); curl_setopt ($ ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt ($ ch, batch, 1); curl_setopt ($ ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt ($ ch, CURLOPT_AUTOREFERER, 1); curl_setopt ($ ch, CURLOPT_POST, 1 ); curl_setopt ($ ch, CURLOPT_POSTFIELDS, $ post_fields); curl_setopt ($ ch, CURLOPT_COOKIEJAR, $ cookie_file); curl_exec ($ ch); curl_close ($ ch); // Carries the cookie file, visit Renren homepage $ send_url =' http://home.renren.com/Home.do '; $ Ch = curl_init ($ send_url); curl_setopt ($ ch, CURLOPT_HEADER, 0); curl_setopt ($ ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ ch, CURLOPT_COOKIEFILE, $ cookie_file); $ contents = curl_exec ($ ch); curl_close ($ ch); // clear the cookie file unlink ($ cookie_file ); // output the content of the Renren homepage print_r ($ contents );
Http://www.bkjia.com/PHPjc/1131691.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1131691.htmlTechArticlephp uses curl to simulate login to Renren (on-campus) network, curl on-campus $ login_url = 'http: // region = 'xxxx'; $ post_fields ['password'] = 'xxxx '; $ post _...