於 Linux 想要下載 YouTube 影片,可以使用 yt-dlp,但是若是非公開的影片,需要登入要怎麼下載呢?
標籤: cookie
蘋果 SKAdNetwork 的廣告追蹤規範 與 IDFA 和 Cookie 等資料整理
近日 Facebook 因為蘋果 iOS 14 的新隱私規定在生氣,但是最後還是得乖乖遵守,看來影響範圍是蠻大的。
相對 Google 是很平靜的配合,到底是發生什麼事情呢?
瀏覽器的 Cookie 容量限制
瀏覽器的 Cookie 是做登入、紀錄、追蹤等等,最常使用的工具。
不過現在 Cookie 要放的東西越來越多,Cookie 到底可以塞的容量是多少呢?
- 註1:照標準應該是 4096 bytes,不過瀏覽器實作時,都可能會有些落差~
- 註2:下述取自此篇:RFC-2965 HTTP State Management Mechanism
- Practical user agent implementations have limits on the number and size of cookies that they can store.
- at least 300 cookies
- at least 4096 bytes per cookie (as measured by the characters that comprise the cookie non-terminal in the syntax description of the Set-Cookie2 header, and as received in the Set-Cookie2 header)
- at least 20 cookies per unique host or domain name
- Practical user agent implementations have limits on the number and size of cookies that they can store.
Xwindow 出現 Invalid MIT-MAGIC-COOKIE-1 key 修復
Ubuntu Linux 升級到 17.10 後,編輯任何檔案後,都會出現 Invalid MIT-MAGIC-COOKIE-1 key 的問題,要怎麼解決?
JavaScript 設定 Cookie 寫法
JavaScript 要設定 Cookie 讓 PHP 讀取操作(安全性暫時先不考慮), 就全部明碼方式, 要怎麼寫?
PHP CURL 直接設定 Cookie 帶入
PHP 透過 CURL 設定讀寫 Cookie 的方式, 大部分都用下述兩個參數:
- curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookie_jar'); // 讀取
- curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookie_jar'); // 寫入
不過若讀取網站的 Cookie 一直寫不進去要怎麼辦? (我也不知道為何會寫不進去. orz.)
好文: Google Analytics Cookies 解剖分析 - 2011
Google Analytics 會寫 Cookies, 但是那麼長的 Cookie 和參數, 代表什麼意思呢?