Skip to content

Instantly share code, notes, and snippets.

@preedaake
preedaake / How to download streaming video
Created March 25, 2018 14:44 — forked from danfinlay/How to download streaming video.md
How to download a streaming video with Google Chrome
#How to download streaming video
Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.
##Open Developer Tools
From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:
1. (On a mac): Command-option-J
2. (On a PC): Control-alt-J
@preedaake
preedaake / login-fb.bat
Last active March 15, 2018 16:19
Log in facebook by cURL on window
:: For Windows
set COOKIES=cookies.txt
set USER_AGENT=Firefox
set EMAIL=
set PASS=
curl -X GET "https://www.facebook.com/home.php" --verbose --user-agent %USER_AGENT% --cookie %COOKIES% --cookie-jar %COOKIES% --location # redirects to https://login.facebook.com/login.php > response1.html
curl -X POST "https://login.facebook.com/login.php" --verbose --user-agent %USER_AGENT% --data-urlencode "email=%EMAIL%" --data-urlencode "pass=%PASS%" --cookie %COOKIES% --cookie-jar %COOKIES% > response2.html
curl -X GET "https://www.facebook.com/home.php" --verbose --user-agent $USER_AGENT --cookie %COOKIES% --cookie-jar %COOKIES% > response3.html