23/10/20 20:08:41.97 .net
特定の板やスレだけ過去ログを取得できない、あるいは取得しづらくなってる
URLリンク(greta.2ch.sc)
ダメなスレは何度やってもdatが取得できない
HTTPヘッダーの環境変数を見て弾いていると思われ
URLリンク(en.wikipedia.org)
回避策としてNavi2chに、本来無用な環境変数を与えてみた
これで失敗( not found )したことはない
~/.navi2ch/init.el
(defadvice navi2ch-net-send-request (around navi2ch-net-send-request-ad activate)
(or (assoc "User-Agent" other-header)
;; cf. URLリンク(en.wikipedia.org)
(add-to-list 'other-header (cons "Accept-Encoding" "gzip, deflate"))
(add-to-list 'other-header (cons "Accept-Language" "Accept-Language: en-US"))
))