I have the following code in my plugin, which during development has been working perfectly fine (called within rest_api_init
).
// ?rest_route=bridge/v1/test-data/process/bbe_examples
register_rest_route(
'bridge/v1', '/(?P<participant>[a-zA-Z0-9-_]+)/process/(?P<section>[a-zA-Z0-9-_]+)', [
'methods' => 'GET',
'callback' => [ $this->api, 'process' ],
]
);
<My URL>/index.php?rest_route=/bridge/v1/test-data/process/bbe_sortables&replace&_wpnonce=<thenonce>
Works fine, regardless of whether they're enabled.
<My URL>/wp-json/bridge/v1/test-data/process/bbe_sortables&replace&_wpnonce=<thenonce>
returns 404 rest_no_route
when called.
These are both currently called by some generated buttons, which are generated using rest_url( "bridge/v1/test-data/process/" )
(the section
is appended to the string during display).
I'm not entirely sure what's going wrong here. I assumed I had to generate the full URL with rest_url()
, but when directly called via the browser or API system the response is the same.
I have the following code in my plugin, which during development has been working perfectly fine (called within rest_api_init
).
// ?rest_route=bridge/v1/test-data/process/bbe_examples
register_rest_route(
'bridge/v1', '/(?P<participant>[a-zA-Z0-9-_]+)/process/(?P<section>[a-zA-Z0-9-_]+)', [
'methods' => 'GET',
'callback' => [ $this->api, 'process' ],
]
);
<My URL>/index.php?rest_route=/bridge/v1/test-data/process/bbe_sortables&replace&_wpnonce=<thenonce>
Works fine, regardless of whether they're enabled.
<My URL>/wp-json/bridge/v1/test-data/process/bbe_sortables&replace&_wpnonce=<thenonce>
returns 404 rest_no_route
when called.
These are both currently called by some generated buttons, which are generated using rest_url( "bridge/v1/test-data/process/" )
(the section
is appended to the string during display).
I'm not entirely sure what's going wrong here. I assumed I had to generate the full URL with rest_url()
, but when directly called via the browser or API system the response is the same.
The problem is with the bbe_sortables&replace
in the permalink:
<My URL>/wp-json/bridge/v1/test-data/process/bbe_sortables&replace&_wpnonce=<thenonce>
which results in an invalid route, where the supposedly query string is seen as part of the route:
/bridge/v1/test-data/process/bbe_sortables&replace&_wpnonce=<thenonce>
(the valid route for that URL is /bridge/v1/test-data/process/bbe_sortables
)
and eventually the REST API throws the rest_no_route
error.
To fix the problem, use add_query_arg()
when generating the URL, to append the proper query string; e.g. with rest_url()
:
$url = add_query_arg( array(
'replace' => 'VALUE',
'_wpnonce' => 'VALUE',
), rest_url( 'bridge/v1/test-data/process/bbe_sortables/' ) );
/* Sample $url output:
a) Permalinks enabled
http://example/wp-json/bridge/v1/test-data/process/bbe_sortables/?replace=VALUE&_wpnonce=VALUE
b) Permalinks *not* enabled
http://example/index.php?rest_route=%2Fbridge%2Fv1%2Ftest-data%2Fprocess%2Fbbe_sortables%2F&replace=VALUE&_wpnonce=VALUE
*/
Or if you're certain that permalinks are always enabled on the site, then this would be fine:
rest_url( 'bridge/v1/test-data/process/bbe_sortables/?replace=VALUE&_wpnonce=VALUE' )
bbe_sortables&replace
in the pretty URL. If you change it tobbe_sortables?replace
, that should work. – Sally CJ Commented Oct 29, 2018 at 13:59test-data/process/page/2
to make it more clearer. Some of my older API practices were coming in. – soup-bowl Commented Oct 30, 2018 at 9:01