Preface This article mainly explains how to implement form submission login through curl. A single form submission is similar to a form login, so I won't discuss them separately. Note: Login via curl form submission is not applicable to all websites because some websites have restrictions or other checks in the background. We don't know the specific restrictions or verification mechanisms behind these websites, so direct curl form login may not work. Of course, the following case can be logged in using curl. Case: LeanCloud Login Requirements and Results Requirements: After logging in through curl, you can access the application page of leancloud normally. The login page link is as follows:
The following pages can be accessed normally:
Browser access effect: Access results directly without logging in. Access results through a browser The access link in the red box 403 in the above figure is as follows:
Verify login via curl [root@iZ28xbsfvc4Z ~]# curl -i https://leancloud.cn/1.1/clients/self/apps HTTP/1.1 403 Forbidden Server: openresty Date: Sun, 14 Jul 2019 11:35:28 GMT Content-Type: application/json;charset=utf-8 Transfer-Encoding: chunked Connection: keep-alive Vary: Accept-Encoding Cache-Control: no-cache,no-store Pragma: no-cache {"code":1,"error":"User doesn't sign in."} Get form field information Get the form submission link The link information for form submission can be obtained through the figure below. The details are as follows:
curl form login and save cookie information 1 curl -v -c leancloud1.info -X POST -F 'email=yourname' -F 'password=yourpassword' https://leancloud.cn/1.1/signin 2 # or 3 curl -v -c leancloud3.info -X POST -d 'email=yourname&password=yourpassword' https://leancloud.cn/1.1/signin View cookie information [root@iZ28xbsfvc4Z 20190714_02]# ll total 32 -rw-r--r-- 1 root root 337 Jul 14 19:45 leancloud1.info -rw-r--r-- 1 root root 335 Jul 14 19:46 leancloud3.info [root@iZ28xbsfvc4Z 20190714_02]# cat leancloud1.info # Netscape HTTP Cookie File # http://curl.haxx.se/docs/http-cookies.html # This file was generated by libcurl! Edit at your own risk. #HttpOnly_leancloud.cn FALSE / TRUE 1563709522 uluru_user Ff1IPOiMX%2F6ipevuxy0OOg%3D%3D leancloud.cn FALSE / TRUE 1563709522 XSRF-TOKEN 5647dc84bd6eaea37eca2d07ae0e401cca4ba76803989c8559XXXXX7283da [root@iZ28xbsfvc4Z 20190714_02]# cat leancloud3.info # Netscape HTTP Cookie File # http://curl.haxx.se/docs/http-cookies.html # This file was generated by libcurl! Edit at your own risk. #HttpOnly_leancloud.cn FALSE / TRUE 1563709591 uluru_user arTwQm6JylzLjBaQt7TpiQ%3D%3D leancloud.cn FALSE / TRUE 1563709591 XSRF-TOKEN 751e12827c7c046408541bc1bf962b5912ac35b0d07f88120XXXXXX40704704 Description of each column field: domain: The domain name where the variable is created and can be read. Verify whether the login is successful Please compare these two access methods: direct access and access with cookies. Direct access [root@iZ28xbsfvc4Z 20190714_02]# curl -i https://leancloud.cn/1.1/clients/self/apps HTTP/1.1 403 Forbidden Server: openresty Date: Sun, 14 Jul 2019 11:52:47 GMT Content-Type: application/json;charset=utf-8 Transfer-Encoding: chunked Connection: keep-alive Vary: Accept-Encoding Cache-Control: no-cache,no-store Pragma: no-cache {"code":1,"error":"User doesn't sign in."} Access with cookie files # Using cookies [root@iZ28xbsfvc4Z 20190714_02]# curl -i -b leancloud1.info https://leancloud.cn/1.1/clients/self/apps ## or [root@iZ28xbsfvc4Z 20190714_02]# curl -i -b leancloud3.info https://leancloud.cn/1.1/clients/self/apps HTTP/1.1 200 OK Server: openresty Date: Sun, 14 Jul 2019 11:53:29 GMT Content-Type: application/json;charset=utf-8 Transfer-Encoding: chunked Connection: keep-alive Vary: Accept-Encoding Cache-Control: no-cache,no-store Pragma: no-cache Strict-Transport-Security: max-age=31536000 [{"app_domain":null,"description":null,"archive_status":0,"biz_type":"dev","master_key": ……………… Copy your browser's cookies to access [root@iZ28xbsfvc4Z 20190720]# curl -i -H 'cookie: _ga=GA1.2.2055706705.1560005524; …………' https://leancloud.cn/1.1/clients/self/apps HTTP/1.1 200 OK Server: openresty Date: Sat, 20 Jul 2019 08:11:37 GMT Content-Type: application/json;charset=utf-8 Transfer-Encoding: chunked Connection: keep-alive Vary: Accept-Encoding Cache-Control: no-cache,no-store Pragma: no-cache Strict-Transport-Security: max-age=31536000 [{"app_domain":null,"description":null,"archive_status":0,"biz_type":"dev","master_key": ……………… From the above, we can see that curl login is successful. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: How to automatically delete records before a specified time in Mysql
>>: Detailed steps for installing and configuring MySQL 8.0 on CentOS
Since I need to learn how to build servers and da...
Compatible with new CSS3 properties In CSS3, we c...
Windows cmd telnet format: telnet ip port case: t...
The effect of completing a menu bar through displ...
Today I want to summarize several very useful HTML...
JBoss uses Tomcat as the Web container, so the co...
This article summarizes the principles and usage ...
1. Official website address The official website ...
MySQL 5.0 has become a classic because of its few...
Export a single table mysqldump -u user -p dbname...
I wrote a simple UDP server and client example be...
This article uses an example to describe how to r...
Table of contents 1. for loop: basic and simple 2...
Table of contents 1. Falling into the pit 2. Stru...
Preface Recently connected to mysql /usr/local/my...