Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/class-wp-rest-oauth1.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ public function get_authentication_errors( $value ) {
return $value;
}

$this->authenticate( null );

return $this->auth_status;
}

Expand Down
1 change: 0 additions & 1 deletion oauth-server.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ function rest_oauth1_load() {
global $wp_json_authentication_oauth1;

$wp_json_authentication_oauth1 = new WP_REST_OAuth1();
add_filter( 'determine_current_user', array( $wp_json_authentication_oauth1, 'authenticate' ) );
add_filter( 'rest_authentication_errors', array( $wp_json_authentication_oauth1, 'get_authentication_errors' ) );
}
add_action( 'init', 'rest_oauth1_load' );
Expand Down