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

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