> 백엔드 개발 > PHP 튜토리얼 > javascript-html - PHP模拟登录公司CRM系统并进行交互,登录界面采用Ajax验证并提交的

javascript-html - PHP模拟登录公司CRM系统并进行交互,登录界面采用Ajax验证并提交的

WBOY
풀어 주다: 2016-06-06 20:20:15
원래의
1463명이 탐색했습니다.

PHP模拟登录公司CRM系统并进行交互,登录界面采用Ajax验证并提交的,试过cURL没成功,页面链接:https://crm.pzoom.com
求解决方案!

function request_by_curl($remote_server, $post_string)
{

<code>$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $remote_server);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'mypost=' . $post_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, "Jimmy's CURL Example beta");
$data = curl_exec($ch);
curl_close($ch);
return $data;</code>
로그인 후 복사
로그인 후 복사

}

echo (request_by_curl("https://crm.pzoom.com/Index/checkform",'userid=用户名&userpwd=密码'));
?>

返回的结果是:{"state":1,"msg":"\u7528\u6237\u540d\u6216\u5bc6\u7801\u9519\u8bef\uff01"}

回复内容:

PHP模拟登录公司CRM系统并进行交互,登录界面采用Ajax验证并提交的,试过cURL没成功,页面链接:https://crm.pzoom.com
求解决方案!

function request_by_curl($remote_server, $post_string)
{

<code>$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $remote_server);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'mypost=' . $post_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, "Jimmy's CURL Example beta");
$data = curl_exec($ch);
curl_close($ch);
return $data;</code>
로그인 후 복사
로그인 후 복사

}

echo (request_by_curl("https://crm.pzoom.com/Index/checkform",'userid=用户名&userpwd=密码'));
?>

返回的结果是:{"state":1,"msg":"\u7528\u6237\u540d\u6216\u5bc6\u7801\u9519\u8bef\uff01"}

curl post userid=用户名&userpwd=密码/Index/checkform看看

你这个post请求的地址是https的,加上这个

<code>curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);</code>
로그인 후 복사

另外把你的'mypost=' .去掉

一个ajax提交 成功了跳转到/Index/selectMedia 没验证码没什么token 没见过这么简单的东西了。。

ajax提交的吧

给你翻译了一下:

<code>{"state":1,"msg":"用户名或密码错误!"}
</code>
로그인 후 복사

到代码里去找原因吧

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿