Skip to content

Basic Authentication handler for the JSON API, used for development and debugging purposes

Notifications You must be signed in to change notification settings

eventespresso/Basic-Auth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 

Repository files navigation

Basic Authentication handler

This plugin adds Basic Authentication to a WordPress site.

Note that this plugin requires sending your username and password with every request, and should only be used for development and testing. We strongly recommend using the [OAuth 1.0a][oauth] authentication handler for production.

Installing

  1. Download the plugin into your plugins directory
  2. Enable in the WordPress admin

Using

This plugin adds support for Basic Authentication, as specified in [RFC2617][]. Most HTTP clients will allow you to use this authentication natively. Some examples are listed below.

cURL

curl --user admin:password http://example.com/wp-json/

WP_Http

wp_remote_request(
    'http://example.com/wp-json',
     array(
     	'headers' => array(
     		'Authorization' => 'Basic ' . base64_encode( $username . ':' . $password ),
     	),
     )
);

CGI and Fast-CGI Workaround

If you are communicating with a webserver using CGI or Fast-CGI (FCGI) then the HTTP Authorization header is blocked by default, which prevents this plugin from successfully authenticating your requests.

On this fork of the WP API Basic Auth plugin, you can instead pass the "Authorization" data in the query string variable _authorization. (On the original version of the WP API Basic Auth pluing, you instead need to do a more complicated fix involving modifying the .htaccess file.) Here are some examples of how to use this version of the Basic Auth plugin authenticating through the query string.

cURL

curl --user admin:password http://example.com/wp-json/?_authorization=Basic base64encodedusernameandpassword

where base64encodedusernameandpassword is the user's username, a colon, and their password concatenated together and theenn base 64 encoded.

WP_Http

wp_remote_request(
    'http://example.com/wp-json?_authorization=Basic ' . base64_encode( $username . ':' . $password ),
     array()
);

About

Basic Authentication handler for the JSON API, used for development and debugging purposes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%