Drupal 8:REST导出视图不能与simple_oauth模块一起使用

时间:2017-02-23 09:22:43

标签: rest drupal drupal-views drupal-8

我正在使用Drupal 8.3.xsimple_oauth模块进行REST授权和身份验证。

我创建了一个简单的REST导出视图并设置" Authentication" to" basic_auth,simple_oauth"。

但是当我尝试网址时,它会显示错误

{
  "message": "The used authentication method is not allowed on this route."
}

查看详情:

enter image description here

更新: 标题详细信息:

"url": "http://localhost/d8/api/stories?_format=hal_json",
"method": "GET",
"headers": {
    "authorization": "Bearer <oauth token>"
}

1 个答案:

答案 0 :(得分:1)

我通过删除&#34;身份验证&#34;解决了我的问题并添加了#34; Access&#34;按角色类型。

enter image description here