Приветствую.
Посылаю post запрос на board через сторонний сайт, но выходит такая ошибка:
{"error":{"msg":"Unsupported signature method","code":"UNSUPPORTED_SIGNATURE_METHOD"}}
На странице кодов ошибок ее не нашел.
Вот сам код запроса:
require_once 'uAPImodule.php';
function site_share($i, $url, $title) {
$data_full = file_get_html($url); // получаем полную новость
$img_full = $data_full->find('#article-theme-image img',0)->src;
$text_full = $data_full->find('#authorsReview > div',0)->plaintext;
$parametrs = array(
'oauth_consumer_key' => $consumer_key,
'oauth_nonce' => $oauth_nonce,
'oauth_signature_method' => $sig_method,
'oauth_timestamp' => $timestamp,
'oauth_token' => $oauth_token,
'oauth_version' => $oauth_version,
'category' => '1',
'title' => $title,
'description' => 'Краткое описание материала',
'message' => $text_full,
'other2' => 'test text'
);
ksort($parametrs);
echo uAPIModule('/board', 'post', $parametrs, '');
}
В чем может быть проблема. Спасибо.