我需要添加“授权”没有 Postman 的标题
我如何在代码中添加“授权”标头,我在我的应用程序中使用nodejs和express,这是为了进行登录,我想在不通过邮递员传递“授权”标头的情况下登录,谢谢!
How i can add "Authorization" header in code, i use nodejs and express in my app, this is to do a login and i want to login without passing the "Authorization" header with Postman, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您的 Node.js 代码使用
http.request
,它可以插入基本身份验证的授权标头,如下所示:When your Node.js code makes an HTTP request using
http.request
, it can insert an authorization header for Basic authentication as follows: