Jump to content

Update categoria por linguagem via webservice


Recommended Posts

Olá pessoal, já pesquisei a respeito mas não acho,

 

estou tentando atualizar uma categoria por webservice baseado na linguagem. Como deve ficar a instrução que eu passo pro webservice pra isso ser possível?

 

meu código é

 

$psXML = <<<XML
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
<category>
<id>{$id}</id>
<active>1</active>
<id_shop_default>1</id_shop_default>
<name>
<language id="{$id_lang}">{$name}</language>
</name>
</category>
</prestashop>
XML;
               
$xml = new SimpleXMLElement($psXML);
$opt = array( 'resource' => 'categories', 'id' => $id );
$opt['postXml'] = $xml->asXML();
$webService->edit( $opt );

me retorna a mensagem Fatal error: Uncaught exception 'PrestaShopWebserviceException' with message 'Bad parameters given' in /home/a3comunicacao/public_html/import/libraries/PSWebServiceLibrary.php:356 Stack trace: #0 /home/a3comunicacao/public_html/import/tg/translate_category.php(148): PrestaShopWebservice->edit(Array) #1 {main} thrown in/home/a3comunicacao/public_html/import/libraries/PSWebServiceLibrary.php on line 356

Edited by David de Barros (see edit history)
Link to comment
Share on other sites

Eu sou programador, mas meu post estava incompleto, veja a alteração que coloquei e veja se pode me ajudar

 

Desenvolver scripts para Webservice é coisa para programadores com conhecimento de banco de dados, SQL e php.

 

Veja aqui tutorial do webservice. Qualquer programador profeciente deverá entender as funcoes lá descritas, para montar o seu script: http://doc.prestashop.com/display/PS15/Webservice+one-page+documentation

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...