* @return a LikesFeed object.
* @throws InstagramException if any error occurs.
*/
public LikesFeed deleteUserLike(String mediaId) throws InstagramException {
String apiMethod = String.format(Methods.LIKES_BY_MEDIA_ID, mediaId);
LikesFeed feed = createInstagramObject(Verbs.DELETE, LikesFeed.class, apiMethod, null);
return feed;
}