4.10  Topic URL Retrieval WebService

To retrieve a topic URL from the appropriate webservice, you need to know the following information:

A PHP example:

require("nusoap/nusoap.php");

$sel = new soapclient("http://forumdev.MyDiscussionsnet/webservices/wservice.php");

$param = array(
    'user' => 'LoginAdministrateur',
    'pwd' => 'motdepasseAdministrateur',
    'idforum' => 1,
    'idcat' => 22,
    'idtopic' => 49,
    'idpost' => 106,
);
$results = $sel->call('get_topic_url', $param);

The webservice will return 2 parameters


4.9 Sub category Topics Display Webservices4.11 Topic Reply Number and URL Retrieval Webservice