Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);

?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.