I am working on a script that imports all product information from the Magento 1.9.3.1 website.
I canβt find a way that allows me to get the external links data that are associated with each product.
external links
(See screenshot)
Does anyone know which method I need to use?
A list of methods can be found here:
http://devdocs.magento.com/guides/m1x/api/soap/introduction.html#Introduction-APIMethods
I think I used all the methods related to the directory, but none of them seem to return the data I need.
You can use this method: http://devdocs.magento.com/guides/m1x/api/soap/catalog/catalogProduct/catalog_product.update.html
From your screenshots, they look like user attributes. Get codes from the catalog> Attributes> Manage attributes. Then, in the call to catalog_product.update, include them in additonal_attributes as an array or arrays.
additonal_attributes
Example: 'additional_attributes' => array( array('key' => 'ready_link', 'value'=> '...'), array('key' => 'itunes_link', 'value'=> '...'), )
'additional_attributes' => array( array('key' => 'ready_link', 'value'=> '...'), array('key' => 'itunes_link', 'value'=> '...'), )
Source: https://habr.com/ru/post/1263784/More articles:How to get the right effect in GPUImageView? - androidPandas Unicode Import export error with to_excel () read_excel () - pythonPandas: aggregating list values ββin columns - pythonSerilog WriteTo MsSqlServer - LoggerConfiguration for synchronous insertion - c #C # - setting XML Node values ββas Stings from StreamReader result - c #The best way to handle dependencies between components of the PHP infrastructure using Git and Composer - gitThe mcrypt_get_iv_size () function is deprecated in Laravel 4.2 on MAMP with PHP 7.1.0 running - phpHow to replace df.ix with df.loc or df.iloc? - pythondifferences between mypy in isinstance and issubclass from python 3.5 to 3.6 in parameterized generics - pythonHow to "expand" ZoneAwareError? - angularAll Articles