OAuth1 icon indicating copy to clipboard operation
OAuth1 copied to clipboard

OAuth server implementation for WP API

Results 87 OAuth1 issues
Sort by recently updated
recently updated
newest added

I'm sure there is a reason for this, but if you submit any options request with OAuth authorisation parameters in the query string a 401 response is set. I've found...

For some reason this one endpoint stopped working after updating. Here is the response I get. [ { "code": "json_oauth1_nonce_already_used", "message": "Invalid nonce - nonce has already been used" }...

Support

Http method 'patch' needs to be supported to be fully compatible with WP Rest API v2.

I use "wp-api-python" client to do work, but this do not implement three-legged OAuth, can i set this plugin to two legged mode? thank you.

``` request url: http://www.example.com/oauth1/request?oauth_version=1.0&oauth_nonce=afba072131130e96b52d1063937ab472&oauth_timestamp=1464839688&oauth_consumer_key=d2JDLzmy07oI&oauth_signature_method=HMAC-SHA1&oauth_signature=8EkPuDVcTsh8cmZfoD3U2K3VHaI%3D OAuthRequest Object ( [parameters:OAuthRequest:private] => Array ( [oauth_version] => 1.0 [oauth_nonce] => afba072131130e96b52d1063937ab472 [oauth_timestamp] => 1464839688 [oauth_consumer_key] => d2JDLzmy07oI [oauth_signature_method] => HMAC-SHA1 [oauth_signature] => 8EkPuDVcTsh8cmZfoD3U2K3VHaI= )...

Support

Fixed WPCS warnings and errors

Situation By accident the API got called on http whilst the site was setup on https. Although the access request was redirected, OAuth1 responded with error 400 'No OAuth parameters...

I'm using the Rest API with oAuth1 outside the Wordpress environment. Unfortunately it kept failing on a 'patch' request with error rest_oauth1_unknown_http_method. As far as I have been able to...

The plugin previously relied on a hand-rolled function that tried to do its own urlencoding. This meant it broke on params with special chars like `[]` (issue #34). A fix...

Filter Hooks - json_oauth1.theme.authorize.show_avatar - json_oauth1.theme.authorize.title - json_oauth1.theme.authorize.description Action Hooks - json_oauth1.theme.authorize.before_login_info - json_oauth1.theme.authorize.after_login_info #194