Before you just jump into reading and implementing this post, please take a look on my posts earlier on how to get access_token and profile id (uid) for the current user on whose behalf you are making requests to Facebook.
http://geekdeck.com/vb-net-facebook-get-access-token-for-desktop-application/
http://geekdeck.com/net-get-facebook-user-profile-id-uid/
Once you have access to Access Token, Profile Id and you know to make HTTP requests and how to deal with XML responses, you can query Facebook to return you user status XML
Dim uristatus As String = “https://api.facebook.com/method/status.get?uids=” & _ProfileID & “&access_token=” & accesstoken & “&limit=3″
requesturl = GetPageAsString(uristatus)
ParseXML(requesturl)
TextBox1.Text = requesturl
You can have User’s last 3 statuses by setting the limit in the above query and getting page as string and then parsing that string formed xml has already been shared in my earlier post:
http://geekdeck.com/net-get-facebook-user-profile-id-uid/
Similarly you can also get Comments, now for getting the Comment you need to pass on the object id for which you want to get comments. It can be a picture, video or status, anything which Facebook supports comments for:
Dim commentrequest As String = “https://api.facebook.com/method/comments.get?object_id=” & objectid & “&access_token=” & accesstoken
Complete documentation for the methods available and forming request queries for other objects can be taken from:
