curl -u username:password http://example.com -F file=@./file
如何在邮寄通话中添加“用户名:密码”?
答案 0 :(得分:0)
您可以在此处找到有关如何使用该教程的教程:HTTP Basic Authentication in AngularJS
但基本上它应该是这样的:
var encodedUserNameAndPassword = encodeBase64(userName + ':' + password);
$http.defaults.headers.common['Authorization'] = 'Basic ' + encodedUserNameAndPassword;
您只需要执行一次,因为它会从$ http更新默认标头。之后,您的所有电话都将被验证。