Ребят,пытаюсь отослать данные на сервер,ничего не получается.первый раз это делаю.
в документации на сервер только указывается аддресс,больше ничего
вот мой код.
$url = 'http://daisylets.domus.net/site/go/api/saveRegistration';
$data = array(
'apiKey' =>'49536457200',
'titleID' => 'mr',
'forename' => 'test',
'surname' => 'test',
'dayPhone' => '00000',
'eveningPhone' => '99999',
'mobilePhone' => '7777',
'email' => 'test email',
'buyingBedrooms' => '4',
'buyingMinPrice' => '100000',
'buyingMaxPrice' => '666666',
'buyingNotes' => 'hello',
'buyingActive' => true
);
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
echo 'Something went wrong';
}
print_r($result);
в ответ приходит Not Found
Sorry, we could not find a page at that URL.
вот документация
www.domus.net/sales/images/domus-api-documentation.pdf
помогите плиз