* the content url
* @return a {#link=Content} object
*/
public Content getContent(String contentURL) {
String fbid = URLUtils.getFbId(contentURL);
Note note = getFbClient().getFacebookObjectByID(fbid, Note.class);
Content content = note2Content(note);
content.setContentUrl(contentURL);
// the API does not retrieve comments and likes
// add comments
List<Comment> noteComments = getFbClient().getFacebookConnectionByID(
note.getId() + "/comments", Comment.class);
addComments(content, noteComments);
// add likes
List<NamedFacebookType> likes = getFbClient().getFacebookConnectionByID(
note.getId() + "/likes", NamedFacebookType.class);
addLikes(content, likes);
return content;
}