Posted 1 октября, 20186 yr comment_151856 Приветствую, не работает API, как бы не пытался. Перерыл все темы и форумы(хоть и их не много). Пишет что страница не найдена по ссылке /api/core/hello Как быть? Код: $apiKey = 'af95c512a37c08b016dca82d45e64462'; $curl = curl_init( 'ссылка/api/core/hello' ); curl_setopt_array( $curl, array( CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_HTTPAUTH => CURLAUTH_BASIC, CURLOPT_USERPWD => "{$apiKey}:" ) ); if(curl_exec($curl) === false) { echo 'Ошибка curl: ' . curl_error($curl); } else { echo 'Операция завершена без каких-либо ошибок'; $response = curl_exec( $curl ); echo $response; }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.