2017-11-11 82 views
0

這並不像Read https://google.com doesn't work anymore in Red?讀不Wordpress.com頁

即使上述修復程序相同問題的工作,這是行不通的:

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

convert-invalid read/binary https://en.blog.wordpress.com/2015/02/26/wordpress-for-ios-new-visual-editor-and-more/ 

    02/26/wordpress-for-ios-new-visual-editor-and-more/ 
    *** Access Error: cannot connect: https://en.blog.wordpress.com/2015/02/26/wordpress-for-ios-new-visual-editor-and-more/ reason: timeout 
    *** Where: read 
    *** Stack: print convert-invalid 

我雷博爾檢查,它作品:

>> read https://en.blog.wordpress.com/2015/02/26/wordpress-for-ios-new-vi 
    sual-editor-and-more/ 
    connecting to: en.blog.wordpress.com 
    == {<!DOCTYPE html> 
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" data-placeholder-foc 
    us="false"><head profile="http://gmpg.... 
    >> 
+0

@HostileFork上一個問題確實爲https://google.com工作,這是另一個問題。 – user310291

回答

1

這是一個不同的問題。檢查你的錯誤信息。

Access Error: cannot connect: https:...

解決辦法:要麼等待本地I/Ouse curl

+0

我不明白https://google.com是HTTPS,它的工作原理?那你爲什麼說Red不支持https。 – user310291

+0

對不起,太快,錯誤的解釋。在** Red **中有幾個障礙,尤其是關於** I/O ** – sqlab

2

很可能是由於更廣泛地採用TLS 1.2,它沒有redbols目前支持原生的。

我剛剛在上週也遭到了猛烈抨擊。我有大約20個封裝的本地應用程序,允許用戶輕鬆查詢密集的Web API。爲了讓這些工作重新開始,我需要在所有本地機器上安裝cURL。呸! :(

我已經成功地讓捲曲我的代碼工作,雖然它比我預想的慢一點見其他的問題在這裏涵蓋了基礎知識:

Call curl from rebol or red

(我「已經有越來越Rebol3阿爾法與捲曲的工作最困難,但我可能只是需要更多的修修補補)

+0

只要您的操作系統支持,紅色支持TLS 1.2。 – DocKimbel

+0

感謝您的更正。 – Edoc

1

該URL可以從紅沒有任何麻煩閱讀:

--== Red 0.6.3 ==-- 
Type HELP for starting information. 

>> read https://en.blog.wordpress.com/2015/02/26/wordpress-for-ios-new-visual-editor-and-more/ 
== {<!DOCTYPE html>^/<html xmlns="http://www.w3.org/1999/xhtml" lang="en" data-placeho 

Red依賴於HTTPS的操作系統網絡層,因此它沒有Rebol2的過時問題。

我對你的問題的猜測是你正在使用代理來訪問互聯網,Red還不支持代理(而Rebol也是這樣),所以這可以解釋你連接的超時時間。

+0

適用於Linux,但不適用於Wine或Win7 – sqlab

相關問題