我想通过链接或通过html表单登录Instagram例如
https://www.instagram.com/accounts/login/ajax/?enc_password=123&username=123
希望我解释得很好
关于链接和属性你是对的:
www.instagram.com/accounts/login/ajax/
enc_password=%23PWD_INSTAGRAM_BROWSER%3A10%3A1632642160%3AATdQAL6Z9PWWJ2ocKoB5qT8Ew56%2Bs5FaGhyLKgaZUpIhFUgyWTyKqkG9IC5OK1d4qJ1KseE9cMjEbfiql0wh5mTpwM0Cw723JCexpS%2Fwm5lUucKh2g%2FEspMj9q5a%2BRtXsphCv%2FcLu2Bd7hS5
username=UserName
但是POST方法不能直接在link中,也许你可以用HTML这样做:
<form action="www.instagram.com/accounts/login/ajax/" id="users"
action="#" method="POST" target="_blank">
USERNAME: <input type="text" name="username"
placeholder="Enter USERNAME">
<br><br>
Password: <input type="password" name="enc_password"
placeholder="Enter Password">
<br><br>
<input type="submit" value="login">
</form>