How can I create a post with the Medium API? I've followed the documentation and my code seems correct, but not getting a response:
$token = '2baemytoken6234324';
$post = [
'title' => 'teseee',
'contentFormat' => 'html',
'content' => 'eeee',
];
$ch = curl_init('https://api.medium.com/v1/users/132434fafasfasf3434/posts');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Accept: application/json',
'Accept-Charset: utf-8',
'Authorization: Bearer ' . $token
));
$data = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);