Код: Выделить всё
$DIASPORA_FR_URL = "https://diasporabr.com.br/";
$accessToken = "my_access_token";
$url = "{$DIASPORA_FR_URL}api/v1/posts?access_token=$accessToken";
$params = [
"body" => "test",
"public" => true
];
$data = http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
if (curl_errno($ch)) {
$result = curl_error($ch);
}
curl_close($ch);
Подробнее здесь: https://stackoverflow.com/questions/760 ... aspora-0-7