Example usage for org.springframework.social.facebook.api PostData getTargetFeedId

List of usage examples for org.springframework.social.facebook.api PostData getTargetFeedId

Introduction

In this page you can find the example usage for org.springframework.social.facebook.api PostData getTargetFeedId.

Prototype

public String getTargetFeedId() 

Source Link

Usage

From source file:org.springframework.social.facebook.api.impl.FeedTemplate.java

public String post(PostData post) {
    requireAuthorization();//  w  w w.  ja  va2s.  c  o  m
    return graphApi.publish(post.getTargetFeedId(), "feed", post.toRequestParameters());
}