我需要从anguler2获取auth0(https://auth0.com/docs/api/management/v2#!/Users/get_users)的所有用户。 这是我试过的。我知道我必须在某处添加访问令牌。请指出正确的方向。
var headers: any = {
'Accept': 'application/json',
'Content-Type': 'application/json'
};
this.authHttp.get('https://nsrevo.au.auth0.com/api/v2/users?search_engine=v2', { headers: headers})
.map(response => response.json())
.subscribe(
response => {
console.log(response);
},
error => alert(error.json().message)
);