Frage

I want to create a login for ERP in my magento store. I have created a user and role in web services->soap/xml-RPC how can login via soap?

War es hilfreich?

Lösung

Endpoint: http://(your host)/api/soap/?wsdl

Endpoint v2: http://(your host)/api/v2_soap/?wsdl

Use soap call login to generate session

$session = $client->login('apiUser', 'apiKey');

then you can use it for other calls

$client->call($session, 'somestuff.method', 'arg1');

Full doc: http://devdocs.magento.com/guides/m1x/api/soap/introduction.html

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top