PHP CURL obtains cookies to simulate login method code example

怪我咯
Release: 2023-03-13 10:46:01
Original
2336 people have browsed it

Use PHP's curlfunctionto implement simulated login method.

To extract part of the data from Googlesearch, I found that Google is very shielded from software capturing its data. In the past, by forging USER-AGENT, the data could be captured, but now it does not work. Using packet capture data, we found that Google determinedcookies. When you do not have cookies, it will directly return 302 jumps, and there are dozens of 302 jumps in a row, and no data can be captured at all.
Therefore, when sending a search command, you need to extract and save the cookies first, and then use the saved cookies to send the search command again to capture the data normally. This is actually the same as the simulated login of the forum. You need to POST to log in first, get the cookies and save them, and then use the cookies to access.
PHP code is as follows:

Code is as follows:

Copy after login

The above is the detailed content of PHP CURL obtains cookies to simulate login method code example. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!