Vijay Vankhede
Vijay Vankhede

Reputation: 3058

Best practices to use Magento rest & soap web API together for android

I am working on Magento based m-commerce android app. In which I have to use both REST & SOAP web api. Because REST api didn't provide all functionality as SOAP. And to use only SOAP api for whole app will reduce app performance and also UX due to overheads and xml.

What is the best practices for doing this thing? Is there any simple option available?

Upvotes: 0

Views: 890

Answers (1)

Remees M Syde
Remees M Syde

Reputation: 2609

In my experience Magento SOAP API is too slow, So you can select REST and try to add extra features to Magento REST API by rewriting the modules. Here is a sample tutorial for do Extending the Magento REST API

In this way you can achieve all the functionality in REST API as same as SOAP API.

Upvotes: 1

Related Questions