权限不足,无法完成操作 - 仅限应用程序

Insufficient privileges to complete the operation - App Only

我在使用 client_credentials 授权类型 (http://graph.microsoft.io/en-us/docs/authorization/app_only)

时遇到端点问题
https://graph.microsoft.com/v1.0/users

我明白了

{#333 ▼
  +"error": {#314 ▼
    +"code": "Authorization_RequestDenied"
    +"message": "Insufficient privileges to complete the operation."
    +"innerError": {#304 ▼
      +"request-id": "37643af9-b9e9-4771-924f-b34c0e9d0d87"
      +"date": "2016-06-22T13:38:06"
    }
  }
}

我可以使用客户端凭据授予毫无问题地获取我的 oauth 令牌

{#319 ▼
  +"token_type": "Bearer"
  +"expires_in": "3600"
  +"ext_expires_in": "3600"
  +"expires_on": "1466606585"
  +"not_before": "1466602685"
  +"resource": "https://graph.microsoft.com"
  +"access_token": "OMITTED"
}

我也选择了合适的申请权限

Read all users' full profiles

请让我知道我做错了什么。

传播权限需要时间(10-30 分钟)