![JAR search and dependency download from the Maven repository](/logo.png)
io.sprucehill.facebook.service.IFacebookGraphFeedService Maven / Gradle / Ivy
The newest version!
package io.sprucehill.facebook.service;
import io.sprucehill.facebook.exceptions.GenericFacebookGraphAPIException;
/**
* @author Michael Duergner
*/
public interface IFacebookGraphFeedService {
String publish(String message, String accessToken) throws GenericFacebookGraphAPIException;
String publish(String message, String link, String picture, String name, String caption, String description, String accessToken) throws GenericFacebookGraphAPIException;
String publish(String userId, String message, String accessToken) throws GenericFacebookGraphAPIException;
String publish(String userId, String message, String link, String picture, String name, String caption, String description, String accessToken) throws GenericFacebookGraphAPIException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy