I trying to connect UWP app to WooCommerce.
Found this plugin on GitHub
I write my code like this
RestAPI rest = new RestAPI("www.simplegames.com.ua/wp-json/wc/v1/", "ck_f03bbd67e26a96604ddb188dbd63be3d252891ab", " cs_f8583f42dd1d75da832574b7ad6e649a0687f88f");
WCObject wc = new WCObject(rest);
//Get all products
var products = await wc.GetProducts();
Debug.WriteLine(products);
But I have this error:
As I understand it is an authentification problem.
Any thoughts, why?
Customer key and secret are correct