All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.code.facebookapi.IFeedImage Maven / Gradle / Ivy

The newest version!
package com.google.code.facebookapi;

import java.net.URL;

/**
 * Interface for an image that appears in a newsfeed/minifeed story and the destination URL for a click on that image.
 * 
 * @see IFacebookRestClient
 * @see FacebookRestClient#handleFeedImages
 */
public interface IFeedImage extends IPair {

	/**
	 * The image "url" can be either:
	 * 
    *
  • a URL linking to an image: this image will be be shrunk to fit within 75x75, cached, and formatted by Facebook.
  • *
  • a Facebook photo ID
  • *
* * @return the String representation of the feed image URL */ public String getImageUrlString(); /** * @return the URL to which the feed image should link */ public URL getLinkUrl(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy