the apprentice webmaster Posted July 26, 2007 Share Posted July 26, 2007 hi i would really appreciate if someone can translate this soap request into a rest request <?php include ("nusoap.php"); $soapclient("http://soap.amazon.com/shemas2/AmazonWebservices.wsdl",true); $proxy = $soapclient->getProxy(); $params = array ( 'browse_node' =>19, 'page' =>1, 'mode' =>'books', 'tag' =>'xxxx', 'type' =>'lite', 'devtag' =>'xxxx' ); $Result = $proxy->BrowseNodeSearchRequest($params); if ($result['faultstring']) { ?> <h2> error</h2> <? echo $result['faultstring'];?> <? } else{ $total =$result['Totalresults']; $item= $result['details']; ?> can anyone help me on that , jst want to see if it was a REST request how would it look like thx Link to comment https://forums.phpfreaks.com/topic/61825-help-with-this-please/ Share on other sites More sharing options...
heckenschutze Posted July 26, 2007 Share Posted July 26, 2007 And I would appreciate 1 million dollars, do you see anyone giving it to me? C'mon, I just want to see what it looks like! Link to comment https://forums.phpfreaks.com/topic/61825-help-with-this-please/#findComment-307863 Share on other sites More sharing options...
the apprentice webmaster Posted July 27, 2007 Author Share Posted July 27, 2007 can anyone help thx Link to comment https://forums.phpfreaks.com/topic/61825-help-with-this-please/#findComment-308691 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.