選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
24 行
622 B
24 行
622 B
<?php |
|
// https://tinysubversions.com/notes/mastodon-bot/ |
|
include('config.php'); |
|
$param = [ |
|
'status' => $mess, |
|
'source' => $source, |
|
'visibility' => $visibility, |
|
'content_type' => 'text/plain' |
|
]; |
|
$ch = curl_init(); |
|
curl_setopt($ch, CURLOPT_URL, $domain.'/api/v1/statuses'); |
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
curl_setopt($ch, CURLOPT_POST, 1); |
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $param); |
|
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Bearer '.$token]); |
|
|
|
$get = curl_exec($ch); |
|
$err = curl_error($ch); |
|
curl_close($ch); |
|
|
|
if (!$get) return 400; |
|
|
|
return 200; |
|
?>
|
|
|