Login API for Prestashop

I am working on an iOS project in which I use the preashop API. Please let me know if there is an API for login?

+6
source share
2 answers

You can use PrestaShop web services and filter them by email and password, as shown below:

http://localhost/api/customers/?filter[email] =pub@prestashop.com &filter[passwd]=19160794b7c0b413e80f58298a8d8200 

You do not have to store your storeโ€™s COOKIE_KEY in your application, you must create a PHP page to give you a hashed password.

+5
source

Mostly use the REST API for login and OTP. The remaining method may use the SOAP API. There is no api for prestashop for creating mobile applications. Apphitect has a built-in API for the iOS Prestashop application. Press here

0
source

All Articles