PHPackages                             webdevstudios/wds-wp-rest-api-connect-ui - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. webdevstudios/wds-wp-rest-api-connect-ui

ActiveWordpress-plugin[Parsing &amp; Serialization](/categories/parsing)

webdevstudios/wds-wp-rest-api-connect-ui
========================================

Provides UI for connecting from one WordPress installation to another via the WordPress REST AP over OAuth1. This plugin is a UI wrapper for WDS WP REST API Connect.

v0.2.5(10y ago)20106[1 issues](https://github.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/issues)GPL-2.0+PHPPHP &gt;5.3

Since Feb 15Pushed 10y ago6 watchersCompare

[ Source](https://github.com/WebDevStudios/WDS-WP-REST-API-Connect-UI)[ Packagist](https://packagist.org/packages/webdevstudios/wds-wp-rest-api-connect-ui)[ Docs](https://github.com/WebDevStudios/WDS-WP-REST-API-Connect-UI)[ RSS](/packages/webdevstudios-wds-wp-rest-api-connect-ui/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (2)Versions (7)Used By (0)

WDS WP REST API Connect UI
==========================

[](#wds-wp-rest-api-connect-ui)

**Contributors:** WebDevStudios
**Donate link:**
**Tags:**
**Requires at least:** 4.4.2
**Tested up to:** 4.4.2
**Stable tag:** 0.2.5
**License:** GPLv2
**License URI:**

Description
-----------

[](#description)

Provides UI for connecting from one WordPress installation to another via the [WordPress REST API](http://wp-api.org/) over [OAuth1](https://github.com/WP-API/OAuth1). This plugin is a UI wrapper for [WDS WP REST API Connect](https://github.com/WebDevStudios/WDS-WP-REST-API-Connect).

#### Caveats:

[](#caveats)

- To use this plugin, you will need to run `composer install` from the root of the plugin to pull in the required dependencies, or [download this zip](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/wds-rest-connect-ui.zip).
- Both the [WP REST API plugin](https://github.com/WP-API/WP-API) and the [OAuth plugin](https://github.com/WP-API/OAuth1) are required to be on the server you are connecting to.
- You'll need to create a '[Client Application](http://v2.wp-api.org/guide/authentication/#oauth-authentication)' on the server. You'll be given instructions from this plugin's settings page after you save the server URL.

#### Usage:

[](#usage)

Once you've created a successful API connection via the Settings screen, you can use the the plugin's API helper function/filter. If the connection is successful, The helper function and filter both return a `WDS_WP_REST_API\OAuth1\Connect` object ([example usage here](https://github.com/WebDevStudios/WDS-WP-REST-API-Connect/blob/master/example.php)), which you can use to make your API requests.

The filter is an alternative to the helper function provided so that you can use in other plugins or themes without having to check if `function_exists`. To do that, simply use `$api = apply_filters( 'wds_rest_connect_ui_api_object', false );`. If the `wds_rest_connect_ui_api_object` function isn't available, you're original value, `false` will be returned. Whether using the function or the filter, you'll want to check if the `$api` object returned is a `WP_Error` object (`is_wp_error`) or a `WDS_WP_REST_API_Connect` object (`is_a( $api, 'WDS_WP_REST_API\OAuth1\Connect' )`) before proceeding with making requests.

```
// Get API object
$api = apply_filters( 'wds_rest_connect_ui_api_object', false );

// If WP_Error, find out what happened.
if ( is_wp_error( $api ) ) {
	echo ''. print_r( $api->get_error_message(), true ) .'';
}

// If a WDS_WP_REST_API\OAuth1\Connect object is returned, you're good to go.
if ( is_a( $api, 'WDS_WP_REST_API\OAuth1\Connect' ) ) {

	$schema = $api->get_api_description();

	// Let's take a look at the API schema
	echo '$schema: '. print_r( $schema, true ) .'';
}
```

Installation
------------

[](#installation)

### Manual Installation

[](#manual-installation)

1. Upload the entire `/wds-rest-connect-ui` directory to the `/wp-content/plugins/` directory.
2. Run `composer install` inside the `/wp-content/plugins/wds-rest-connect-ui` directory.
3. Activate WDS WP REST API Connect UI through the 'Plugins' menu in WordPress.
4. Update the connection settings.

To avoid step 2, [download this zip](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/wds-rest-connect-ui.zip), unzip the file and follow steps 1, 3, and 4.

Frequently Asked Questions
--------------------------

[](#frequently-asked-questions)

Screenshots (a bit out of date since 0.2.0)
-------------------------------------------

[](#screenshots-a-bit-out-of-date-since-020)

1. Settings [![Settings](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/screenshot-1.png)](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/screenshot-1.png)
2. After settings are saved, authentication is required. [![After settings are saved, authentication is required.](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/screenshot-2.png)](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/screenshot-2.png)
3. Successful authentication notice which demonstrates available routes. [![Successful authentication notice which demonstrates available routes.](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/screenshot-3.png)](https://raw.githubusercontent.com/WebDevStudios/WDS-WP-REST-API-Connect-UI/master/screenshot-3.png)

Changelog
---------

[](#changelog)

### 0.2.5

[](#025)

- Update the wds-wp-rest-api-connect dependency to fix a typo from a variable which should be using an object property (for legacy mode).

### 0.2.4

[](#024)

- Update the wds-wp-rest-api-connect dependency to fix some bugs and in the `auth_request` method.

### 0.2.3

[](#023)

- Fix some authentication step logic, and ensure discovery is not called too often.
- Update the wds-wp-rest-api-connect dependency to fix some bugs and add filters to request args.

### 0.2.2

[](#022)

- The Optional Headers fields are now available for all steps, to ensure proper headers are sent during discovery.
- Update the wds-wp-rest-api-connect dependency, so that we use our own API Discovery library to use the WP http API, and to correctly pass any headers if they exist.

### 0.2.1

[](#021)

- Update composer files to point to correct packagist repo for WDS WP REST API Connect.

### 0.2.0

[](#020)

- Update to fix some security issues and work with the new version of the OAuth plugin.

### 0.1.0

[](#010)

- First release

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Total

6

Last Release

3705d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/204f41ec695703a1363f27b8e65667efbb491e78a15f5dba772bfce88a7a277b?d=identicon)[jtsternberg](/maintainers/jtsternberg)

---

Top Contributors

[![jtsternberg](https://avatars.githubusercontent.com/u/1098900?v=4)](https://github.com/jtsternberg "jtsternberg (61 commits)")[![Shelob9](https://avatars.githubusercontent.com/u/1994311?v=4)](https://github.com/Shelob9 "Shelob9 (2 commits)")[![phatsk](https://avatars.githubusercontent.com/u/990374?v=4)](https://github.com/phatsk "phatsk (1 commits)")

---

Tags

jsonwordpresswp-api

### Embed Badge

![Health badge](/badges/webdevstudios-wds-wp-rest-api-connect-ui/health.svg)

```
[![Health](https://phpackages.com/badges/webdevstudios-wds-wp-rest-api-connect-ui/health.svg)](https://phpackages.com/packages/webdevstudios-wds-wp-rest-api-connect-ui)
```

###  Alternatives

[justinrainbow/json-schema

A library to validate a json schema.

3.6k316.9M609](/packages/justinrainbow-json-schema)[airesvsg/acf-to-rest-api

Exposes Advanced Custom Fields Endpoints in the WordPress REST API

1.4k75.0k](/packages/airesvsg-acf-to-rest-api)[ergebnis/json-normalizer

Provides generic and vendor-specific normalizers for normalizing JSON documents.

8237.5M6](/packages/ergebnis-json-normalizer)[mwdelaney/sage-advanced-custom-fields

Advanced Custom Fields local JSON setup for Sage 9 based themes

104194.7k](/packages/mwdelaney-sage-advanced-custom-fields)[wpreadme2markdown/wpreadme2markdown

Convert WordPress Plugin readme.txt to Markdown

9564.6k4](/packages/wpreadme2markdown-wpreadme2markdown)[nekojira/wp-api-menus

Extends WordPress WP API with menu routes.

1401.5k](/packages/nekojira-wp-api-menus)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
