<?php
require_once('nusoap.php');
$client = new soapclient('https://api.filesanywhere.com/fawapi.asmx?WSDL');
$loginResult = $client->call('AccountLogin',
array('APIKey' => '<MY KEY>'),
array('UserName' => '<MY USERNAME>'),
array('Password' => '<MY PASSWORD>'));
?>
|