Skip to content

Instantly share code, notes, and snippets.

@ibnesayeed
Created March 19, 2018 03:15
Show Gist options
  • Select an option

  • Save ibnesayeed/d4238a5f06c8df94ad04fc2aa5b9cf66 to your computer and use it in GitHub Desktop.

Select an option

Save ibnesayeed/d4238a5f06c8df94ad04fc2aa5b9cf66 to your computer and use it in GitHub Desktop.
Twitter Language Session Behavior Explored in cURL
$ 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