I want to delete a specify message such as selected by user. But SDK returns “Uncaught GraphMethodException: Unsupported delete request”;
$mid = (message_id get by FQL);
$facebook->api(‘/’.$mid, ‘delete’);
Is there how to delete a message?
(Incidentally, an event can delete by this method.)
Issuing a POST to delete a message is not documented on the Graph API Message page in the Developer Pages. Judging by the return message you received, deleting messages from 3rd party apps isn’t supported by the API.