wp-api/basic-auth

There is no license information available for the latest version (dev-master) of this package.

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

Maintainers

👁 rmccue

Package info

github.com/WP-API/Basic-Auth

Type:wordpress-plugin

pkg:composer/wp-api/basic-auth

Statistics

Installs: 159 845

Dependents: 0

Suggesters: 0

Stars: 809

Open Issues: 49

dev-master 2017-12-03 21:39 UTC

Requires

None

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Unknown License 9e9d5267c7805c024f141d115b224cdee5a10008

This package is auto-updated.

Last update: 2026-06-16 01:25:27 UTC


README

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 over SSL-secured connections or for local development and testing. Without SSL we strongly recommend using the OAuth 1.0a authentication handler in production environments.

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 https://example.com/wp-json/

WP_Http

$args = array(
	'headers' => array(
		'Authorization' => 'Basic ' . base64_encode( $username . ':' . $password ),
	),
);

node-wpapi

const WPAPI = require('./wpapi')
const wp = new WPAPI({
 endpoint: 'https://example.com/wp-json',
 username: 'editor',
 password: 'password'
});