6

我遇到了基本身份验证问题。

尝试使用以下网址通过 Postman(chrome 插件)发送 GET 请求: http://_MY_WEBSITE_URL_/wp-json/wp/v2/users/3

用户名和密码字段填充了站点的管理员用户凭据。

我得到的错误:

{
    "code": "rest_user_cannot_view",
    "message": "Sorry, you cannot view this resource.",
    "data": {
        "status": 401
    }
}

我尝试使用来自另一个网站的 wp_remote_request 以及 CURL 进行基本身份验证,但每次结果都相同。

id 为 3 的用户存在,我已经检查过了。如果我想列出所有用户,我只会得到那些创建了帖子的用户。

我已经激活了所需的插件:WP REST APIJSON Basic Authentication

我的wordpress版本:4.4.2

4

3 回答 3

3

最后,我想出了解决方案。我不得不手动向我的.htaccess文件中添加一些新选项,但插件没有成功。

编码:

# BEGIN WP BASIC Auth
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /PluginTest/
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
</IfModule>
# END WP BASIC Auth
于 2016-04-08T12:19:26.190 回答
2

我认为问题不在于从服务器获取用户数据,但此错误代码是针对您的身份验证问题具有此用户功能或角色可能不是管理员

查看详细信息

wp-content/plugins/rest-api/lib/endpoints/class-wp-rest-users-controller.php

public function get_item_permissions_check( $request ) {

    $id = (int) $request['id'];
    $user = get_userdata( $id );
    $types = get_post_types( array( 'public' => true ), 'names' );

    if ( empty( $id ) || empty( $user->ID ) ) {
        return new WP_Error( 'rest_user_invalid_id', __( 'Invalid resource id.' ), array( 'status' => 404 ) );
    }

    if ( get_current_user_id() === $id ) {
        return true;
    }

    if ( 'edit' === $request['context'] && ! current_user_can( 'list_users' ) ) {
        return new WP_Error( 'rest_user_cannot_view', __( 'Sorry, you cannot view this resource with edit context.' ), array( 'status' => rest_authorization_required_code() ) );
    } else if ( ! count_user_posts( $id, $types ) && ! current_user_can( 'edit_user', $id ) && ! current_user_can( 'list_users' ) ) {
        return new WP_Error( 'rest_user_cannot_view', __( 'Sorry, you cannot view this resource.' ), array( 'status' => rest_authorization_required_code() ) );
    }

    return true;
}
于 2016-04-07T10:10:56.480 回答
0

对于所有面临这些错误的人,请删除标头中的基本身份验证授权,并在激活 JWT 后在所有情况下(获取和发布)发送 customer_key 和 customer_secret 作为查询参数。这可能看起来很奇怪和不安全,但它对我有用。

于 2019-02-25T01:20:41.040 回答