I'm new to php and api and am looking for some help. Can anybody help me fix my script so I can connect to the API that I am attempting to connect to because when I run my script I get this message:
stdClass Object ( [return] => stdClass Object ( [responseCode] => stdClass Object ( [apiResponseCodeType] => BAD_INPUTS [responseDescription] => getTreeNode request was malformed (null) ) ) ) stdClass Object ( [return] => stdClass Object ( [responseCode] => stdClass Object ( [apiResponseCodeType] => BAD_INPUTS [responseDescription] => getEventsPrices request was malformed (null) ) ) )
And this is my script:
<?php
require_once('OFAPI.php');
$LoginWebRequest = new stdClass();
$LoginWebRequest->Username = 'username here';
$LoginWebRequest->Password = 'password here';
class toString {
public function __toString() {
return;
}
}
$LogIn = new stdClass();
$LogIn->loginWebRequest = $LoginWebRequest;
$client = new SoapClient('https://www.oddsfutures.com/ofapi_v1/services/ofapi?wsdl');
$LoginResponse = $client->LogIn($LogIn);
$result = $client->getEventTreeNode('getEventTreeNode', ' 100001', $LoginResponse);
print_r($result);
$result = $client->getEventsPrices('getEventsPrices', $LoginResponse);
print_r($result);
?>