You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
how can I input that parameter?
var parameter = {
filter[orderby]: 'meta_value_num',
order: 'asc',
oauth_consumer_key: 'ck_key',
oauth_signature_method: 'HMAC-SHA1',
oauth_timestamp: timestamp,
oauth_nonce: nonce,
oauth_version : '1.0'
};
that can't be possible right? So how to do that? Thanks
I cannot help you with specific examples for woocommerce.
You need to consider that the parameter object needs to be serialisable to a query string (?foo=bar&baz=qux), so you will need to understand what kind of encoding you need to get woocommerce to handle complex object encoding.
Please see this stackoverflow post.
The text was updated successfully, but these errors were encountered: