We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f341ff6 commit 137bacfCopy full SHA for 137bacf
authorize-page.php
@@ -8,7 +8,7 @@
8
* @subpackage JSON API
9
*/
10
11
-class WP_JSON_Authentication_Authorize {
+class WP_JSON_Authentication_OAuth1_Authorize {
12
/**
13
* Request token for the current authorization request
14
*
oauth-server.php
@@ -102,7 +102,7 @@ function json_oauth_api_routes( $data ) {
102
* sanitized before this.
103
104
function json_oauth_load_authorize_page() {
105
- $authorizer = new WP_JSON_Authentication_Authorize();
+ $authorizer = new WP_JSON_Authentication_OAuth1_Authorize();
106
$authorizer->register_hooks();
107
}
108
add_action( 'init', 'json_oauth_load_authorize_page' );
0 commit comments