我在前端使用带有角度sdk的环回。我想获取有关登录用户的信息;所以我做了以下几点:
User.getCurrent()
.$promise
.then((currentUser) => console.log(currentUser));
但服务器响应401未经授权的请求。
code: "AUTHORIZATION_REQUIRED"
message: "Authorization Required"
name: "Error"
如何获取当前用户的信息?
答案 0 :(得分:0)
尝试为经过身份验证的用户添加一个acl,我认为它过去对我有用。这是不自然的,因为人们可能会认为$ owner是正确的选择,但它确实有效。