
MaxBounty SOAP API getKey returning Blank String
Wondering if anybody has any ideas?
Does anybody have a working request they can send me to emulate. Unfortunately this is not working.
Code Below:
<?php
require_once('nusoap/lib/nusoap.php');
$user = "USERNAME";
$pass = "PASSWORD";
$params = array('user'=>'USERNAME','password'=>'PASSWORD');
$client = new SoapClient("http://www.maxbounty.com/api.cfc?wsdl");
$key = $client->getKey($params);
print_r($key);
?>