Rebol 3 - 如何通过https提交用户名和密码?

时间:2013-07-22 18:18:15

标签: https rebol rebol3

我正在尝试从我的Google帐户访问Feed,但我不知道如何发送用户和密码:

>> read https://mail.google.com/mail/feed/atom
** Access error: protocol error: "Authentication not supported yet"

>> read https://user:pass@mail.google.com/mail/feed/atom
** Access error: protocol error: "Authentication not supported yet"

你是怎么做到的?

1 个答案:

答案 0 :(得分:6)

目前,在Rebol 3的HTTP方案中没有实现授权的高级支持(使用用户名:URL中的密码@)。

但是,您可以轻松直接发送HTTP Authorization header(对于HTTP“基本”身份验证):

read [
    scheme: 'https
    host: "mail.google.com"
    path: "/mail/feed/atom"
    headers: [Authorization: join "Basic " enbase/base "user:pass" 64]
]