Archive: Api

 

Posts Tagged ‘Api’


Alguien con expertiz o experiencia con la API de magento? Y que quiera responder unas dudas? #thanks #magento Alguien con expertiz o experiencia con la API de magento? Y que quiera responder unas dudas? #thanks #magento Possibly Related Posts: RT @TweetSmarter: 7 Free Tools For Integrating #Twitter With Your WordPress Blog: http://t.co/rZEwfLPx RT @_Magento_ Magento [...]



 

Over 120000 people searching for Magento related solutions end up on this site every month. See what … Magento with xDebug, web services API and testUnit …inchoo.net/ecommerce/magento/magento-xdebug/ Using xDebug for Magento's API debugging server side • Inchoo Possibly Related Posts: Gorilla Commerce Launches "In Store" Line of Magento Software Extensions – San Francisco Chronicle (press [...]



 

“@alanstorm: Magento folks! A new article on using the Magento core API without SOAP or XML-RPC. http://t.co/I6ULf9yX” worth reading “@alanstorm: Magento folks! A new article on using the Magento core API without SOAP or XML-RPC. http://t.co/I6ULf9yX” worth reading Possibly Related Posts: RT @TweetSmarter: 7 Free Tools For Integrating #Twitter With Your WordPress Blog: http://t.co/rZEwfLPx RT [...]



 

The way I am using Magento is like this: We are using Magento admin/dashboard to setup store, catalog and related stuff We are using Magento’s SOAP & RPC API interface for our customer facing storefront i.e. listing store, catalog, products, purchase, reviews etc in our UI layer is done by calling various Magento APIs. What [...]



 

I have installation of magento 1.6.1 on local machine i\’m trying to connect magetno\’s api in php using following code $proxy = new SoapClient(‘http://localhost/magento/api/v2_soap/?wsdl’); $sessionId = $proxy->login(‘apiuser’, ‘apikey’); I can connect using this code if internet connection on, If I make it off it doesn’t work. it gives following errors Warning: SoapClient::SoapClient() [soapclient.soapclient]: php_network_getaddresses: getaddrinfo [...]



 

I’m working on the Magento API and I got some questions… I try to get all Product Names from a specific category at Magento. here’s my code for that: <?php $host = “www.host.tld/index.php”; $client = new SoapClient(“http://”.$host.”/api/soap/?wsdl”); $apiuser= “user”; //webservice user login $apikey = “pass”; //webservice user pass try { // Login $sess_id= $client->login($apiuser, $apikey); [...]



 

Using the magento api version 1 and soap. Need to return all orders with ‘coupon_code’=> NULL The call I’m attempting: $order_listAR = $proxy->call($sessionId, ‘sales_order.list’, array(array(‘coupon_code’=>array(‘null’=>’null’)))); The ouput I want returned is this: array(237) { ["state"]=> string(8) “complete” ["status"]=> string(8) “complete” ["coupon_code"]=> NULL So far this seems to work properly, but I’m not sure if (‘null’=>’null’) [...]



 

How can I simply add new simple products incrementally to configurable products? or do I still need to retrieve the 2 original arrays of the pre-defined configurable product (getConfigurableAttributesData and getConfigurableProductsData) first, append the new arrays and set them again? Is it worked for my case just as the first-time creation? And if the new [...]



 

There's no doubt that Magento's core API is a useful tool when used in the right way, but it can also be fiddly as hell and sometimes frustrating. My assignment.www.e-commercewebdesign.co.uk/…/grabbing-products-cross… Grabbing Products Cross-Domain with Magento SOAP API … Possibly Related Posts: Gorilla Commerce Launches "In Store" Line of Magento Software Extensions – San Francisco Chronicle [...]



 

I am working with Magento 1.6 and try to call the Soap API V2 to get product-information (attributes and additional attributes). If use soapUI or try to generate a request in java to get information of the product and its additional attributes a new entry gets written to the system log, saying: 2012-01-20T08:33:04+00:00 DEBUG (7): [...]