سؤال

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?

هل كانت مفيدة؟

المحلول

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

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top