Read https://google.com doesn't work anymore i

2019-09-20 04:53发布

问题:

Weird, Read https://google.com had been working, and today it doesn't work anymore:

read https://google.com *** Access Error: invalid UTF-8 encoding: #{E9206E27}

回答1:

That's a long time known issue with pages with invalid / different utf implementations. This can help

convert-invalid: function [page] [
    collect/into [foreach c page [keep to-char c]]  clear ""
]

>> convert-invalid read/binary https://google.com
== {<!doctype html><html itemscope="" itemtype="http://schema.org/Web...


标签: red