On 10.05.13 08:01, Carlos Esquivel wrote:
> and with RestFB?
restfb.com:
"RestFB is a simple and flexible Facebook Graph API and Old REST API
client written in Java"
Hence, RestFB is just an abstraction over the FB Graph API. If you need
'me/feed' from FB then the RestFB way of doing this is:
facebookClient.fetchConnection("me/feed", Post.class);
You really need to read the RestFB docs.
Cheers,
Marcel