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

Rebol 3-如何通过https提交用户名和密码?,https,rebol,rebol3,Https,Rebol,Rebol3,我正在尝试从我的google帐户访问提要,但我不知道如何发送用户和密码: >> 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 er

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

>> 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"

如何做到这一点?

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

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


当前主版本不包含HTTPS。我将根据备用的“Saphirion”版本进行响应。该版本中现在也提供了HTTPS。
read [
    scheme: 'https
    host: "mail.google.com"
    path: "/mail/feed/atom"
    headers: [Authorization: join "Basic " enbase/base "user:pass" 64]
]