이 기사의 예에서는 PHP가 업데이트를 게시하기 위해 Curl을 사용하여 Renren에 로그인하는 것을 모방하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
PHP에서 로그인을 모방하면 많은 사람들이 즉시 컬(curl) 함수 시리즈를 떠올릴 것입니다. 이 예제도 컬을 사용하여 로그인을 모방한 다음 이를 동적으로 게시하는 원리도 간단합니다. Renren.com의 로그인 정보를 가져온 다음 컬 포스트를 통해 로그인 데이터를 업로드합니다.
구체적인 코드는 다음과 같습니다.
$cookie_file = dirname(__FILE__)."/renren.cookie";
$login_url = 'http://passport.renren.com/PLogin.do';
$post_fields['email'] = $rconfig['rusername'];
$post_fields['password'] = $rconfig['rpassword'];
$post_fields['origURL'] = 'http://home.renren.com/Home.do';
$post_fields['domain'] = 'renren.com';
$ch = 컬_init($login_url);
cur_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');
컬_setopt($ch, CURLOPT_HEADER, 0);
컬_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
컬_setopt($ch, CURLOPT_MAXREDIRS, 1);
컬_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
컬_setopt($ch, CURLOPT_AUTOREFERER, 1);
컬_setopt($ch, CURLOPT_POST, 1);
컬_setopt($ch, CURLOPT_POSTFIELDS, $post_fields);
컬_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file);
$content = 컬_exec($ch);
$info = 컬_getinfo($ch);
컬_닫기($ch);
//var_dump($info);exit;
//사용자 ID 일치
$send_url='http://www.renren.com/home';
$ch = 컬_init($send_url);
컬_setopt($ch, CURLOPT_HEADER, 0);
컬_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
컬_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
컬_exec($ch);
$info = 컬_getinfo($ch);
컬_닫기($ch);
//$uid = "305115027";
//토큰 및 rtk 가져오기
$send_url=$info['redirect_url'];
$ch = 컬_init($send_url);
컬_setopt($ch, CURLOPT_HEADER, 0);
컬_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
컬_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
$tmp = 컬_exec($ch);
컬_닫기($ch);
preg_match_all("/get_check:'(.*?)',get_check_x:'(.*?)',/is",$tmp,$arr);
preg_match_all("/'ruid':'(.*?)',/is",$tmp,$utmp);
//var_dump($utmp);exit;
$token = $arr[1][0];//1121558104
$rtk = $arr[2][0];//e9a9cb2
$uid = $utmp[1][0];
//echo $token;exit;
//정보 게시
$poststr['content'] = $_GPC['content'].$rconfig['tail'];
$poststr['withInfo'] = '{"wpath":[]}';
$poststr['hostid:'] = $uid;
$poststr['privacyParams'] = '{"sourceControl": 99}';
$poststr['requestToken'] = $token;
$poststr['_rtk'] = $rtk;
$poststr['channel'] = "renren";
$head = 배열(
'추천인:http://shell.renren.com/ajaxproxy.htm',
'X-요청-With:XMLHttpRequest',
);
$ch = 컬_init("http://shell.renren.com/{$uid}/status");
cur_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');
컬_setopt($ch,CURLOPT_HTTPHEADER,$head);
컬_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
컬_setopt($ch, CURLOPT_MAXREDIRS, 1);
컬_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
컬_setopt($ch, CURLOPT_AUTOREFERER, 1);
컬_setopt($ch, CURLOPT_POST, 1);
컬_setopt($ch, CURLOPT_POSTFIELDS, $poststr);
컬_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
$content = 컬_exec($ch);
컬_닫기($ch);
//echo $content;exit;
$data = json_decode($content,true);
if($data["코드"] == "0"){
echo "성공적으로 게시되었습니다!";
}그밖에{
echo "젠장!!!";
}
드디어 공개에 성공했습니다. 물론 이전 데이터베이스도 직접 작성해야 합니다. 아주 간단한 기록 데이터베이스도 공개하고 싶은 정보입니다. 데이터를 기록하면 됩니다.
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.