4

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

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

你怎么做到这一点?

4

1 回答 1

6

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

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

read [
    scheme: 'https
    host: "mail.google.com"
    path: "/mail/feed/atom"
    headers: [Authorization: join "Basic " enbase/base "user:pass" 64]
]
于 2013-07-22T18:42:21.510 回答