* @throws IQserException if an exception occurs
*/
protected void performPostAction(Content content) throws IQserException {
String endPoint = "me/feed";
String messageValue = content.getAttributeByName("message").getValue();
Parameter parameter = Parameter.with("message", messageValue);
FacebookType postMessage = getFbClient().publishObject(endPoint, FacebookType.class, parameter);
// update graph with new content
String contentURL = URLUtils.makeContentURL(postMessage.getId(), ContentTypeEnum.STATUS.name());