Created
March 19, 2018 03:15
-
-
Save ibnesayeed/d4238a5f06c8df94ad04fc2aa5b9cf66 to your computer and use it in GitHub Desktop.
Twitter Language Session Behavior Explored in cURL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ curl --silent -c /tmp/twitter.cookie https://twitter.com/?lang=ar | grep "<html" | |
| <html lang="ar" data-scribe-reduced-action-queue="true"> | |
| $ cat /tmp/twitter.cookie | grep lang | |
| twitter.com FALSE / FALSE 0 lang ar | |
| $ curl --silent https://twitter.com/ | grep "<html" | |
| <html lang="en" data-scribe-reduced-action-queue="true"> | |
| $ curl --silent -H "Accept-Language: ur" https://twitter.com/ | grep "<html" | |
| <html lang="ur" data-scribe-reduced-action-queue="true"> | |
| $ curl --silent -b /tmp/twitter.cookie https://twitter.com/ | grep "<html" | |
| <html lang="ar" data-scribe-reduced-action-queue="true"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment