I have a script that sends a post to my group.
$attachment = array('message' => $message, 'link' => $link );
try
$result = $facebook->api("/$sendTo/feed/",'post', $attachment);
} catch (FacebookApiException $e) {
echo "error";
}
$sendTo holds the fbid of the group,
What's the code that needs to be added so that the script checks the group and if the last post (most recent one) was made by my fbid ($myfbid) then don't post the message?
any help would be appreciated,