Closed GoogleCodeExporter closed 9 years ago
Hi there - this is expected behavior. It's not realistic to provide canned
classes for everything FB can return, so the onus is on you to write your own.
For example:
public class PostResponse extends FacebookType {
@Facebook("post_id")
private String postId;
public String getPostId() {
return postId;
}
}
...
PostResponse postResponse = facebookClient.publish("me/feed",
PostResponse.class, Parameter.with("message", "RestFB test"));
Original comment by m...@xmog.com
on 27 Apr 2012 at 1:37
Original issue reported on code.google.com by
madden....@gmail.com
on 26 Apr 2012 at 11:54