-
Notifications
You must be signed in to change notification settings - Fork 165
Closed
Description
I'm trying to use filters with no luck, i keep getting
Error: Invalid Signature - provided signature does not match [woocommerce_api_authentication_error]
I get that error every time i try to use filters like this:
$params = [
'filter' => [
'created_at_min' => '2016-01-01',
'created_at_max' => '2016-01-15',
],
'page' => 1,
];
if i remove the dates filters it will work:
$params = [
'filter' => [
'limit' => 15,
],
'page' => 1,
];
category filter show the same message:
$params = [
'filter' => [
'limit' => 15,
'category' => 'Music',
],
'page' => 1,
];
it will work if i remove it:
$params = [
'filter' => [
'limit' => 15,
],
'page' => 1,
];
Metadata
Metadata
Assignees
Labels
No labels