带用户名的 Node.js HTTPS 请求
我正在尝试查询 api.whatever.com,但我也想传递一个用户名,例如在curl中它看起来像这样:
如何编写客户端请求,以便将 USERNAME 正确发送到 API 服务器。
I'm trying to query api.whatever.com, but I also want to pass a USERNAME, such as in curl it would look like this:
How do I write the client request in such a way that USERNAME gets sent properly to the API server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要对用户名进行 Base64 编码。
You need to base64 encode the username.
http://en.wikipedia.org/wiki/Basic_access_authentication
有对您所拥有的格式的解释使用以及一个例子。
http://en.wikipedia.org/wiki/Basic_access_authentication
There's an explaination of the format you have to use as well as an example.