Home  >  Article  >  php教程  >  Use php curl to log in to open source China

Use php curl to log in to open source China

WBOY
WBOYOriginal
2016-08-04 08:54:551201browse

Use phpcurl to log in to Open Source China; remember to replace the account number and password with a valid account and no password?php/*** php curl logs into open source China * @author yearnfar*/define(SELF_PATH, realpath(dirname(__FILE__))));$useragent = $_SERVER[ 'HTTP_USER_AGENT'];$postdata = http_build_query(

Use php curl to log in to Open Source China; remember to replace the account number and password with a valid account number and password d648d7d84be222d28bc97c69767ed12f
<?php
/**
 * php curl登陆开源中国
 * @author yearnfar
 */
define(SELF_PATH, realpath(dirname(__FILE__)));

$useragent = $_SERVER['HTTP_USER_AGENT'];

$postdata = http_build_query(array(
	'email' => '账号',
	'pwd'=> sha1('密码') ,
	'save_login'=>1 ));
//exit($postdata);
//cookies保存路径
is_dir(SELF_PATH.'/cookies') or mkdir(SELF_PATH.'/cookies');
$cookiejar = tempnam(SELF_PATH."/cookies/", "cookie");

$url = array(
	0=>	'https://www.oschina.net/action/user/hash_login',
	1=>	'http://my.oschina.net/yearnfar',
	2=>	'https://www.oschina.net/home/login',
	);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url[0]);
curl_setopt($ch, CURLOPT_TIMEOUT , 10);	//curl执行最长时间(秒)
curl_setopt($ch, CURLOPT_HEADER, 0);

curl_setopt($ch, CURLOPT_SSLVERSION,3); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//curl_setopt($ch, CURLOPT_PORT , 80);		//连接端口
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_POST, true);	//提交的数据 
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);	//提交的数据
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiejar);	//保存cookie信息 

$data = curl_exec($ch);
curl_close($ch);
//print_r($data);
//exit();

$ch = curl_init($url[1]);
curl_setopt($ch, CURLOPT_HEADER, 0);
//curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //https
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiejar);

$contents = curl_exec($ch);
curl_close($ch);

print_r($contents);  
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn