gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 00:29:08 24 4
gpt4 key购买 nike

我正在尝试从我的 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 Authorization header直接(对于 HTTP“基本”身份验证):

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

关于https - Rebol 3 - 如何通过 https 提交用户名和密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17794572/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com