By default, Magento returns XML format when you try to access REST API resources. For example : You try to access REST url to get product’s information of this site : http://localhost/magento/api/rest/products It will return in XML format.But some cases, other developers want you to send them JSON format instead of XML….
There are many problems when you’re working with configurable products. One of annoying issue was we forgot to make associated simple products inherit parent product categories. And of course, It will take us a lot of time to accomplish it manually. Therefore, I wrote scripts for this task. You can…