I am trying to get all messages posted in a given group on Facebook. However, I am failing to use FQL with Facebook C# SDK, so I tried something simple, like this:
dynamic result = fb.Get("/groups/GroupID/feed/");
But then I got the following exception:
(OAuthException) Unknown path components: /feed
What I am doing wrong?
Thanks.