· ·

Facebook development for Windows Phone 8 (retro)

Some examples below. Note, you need to get your own access tokens… to get this, go to sample queries and copy/paste the access token. examples All about me (matches query in fb…

Some examples below. Note, you need to get your own access tokens… to get this, go to sample queries and copy/paste the access token.

examples

https://developers.facebook.com/docs/reference/api/search

All about me (matches query in fb sample)

https://graph.facebook.com/me?access_token=XX

Profile = wall

https://graph.facebook.com/me/feed?access_token=XX

profile of friend

https://graph.facebook.com/4/feed?access_token=XX

get my friends

https://graph.facebook.com/me/friends?access_token=XX

each friend has an id, eg: 4 is mark zuckerberg

friends page for more information

https://www.facebook.com/4

picture
https://graph.facebook.com/{0}/picture?type={1}&access_token={2}”, id, “square”, _accessToken

of course, how you parse these things is a non trivial mess of IDictionary, JsonArray and JsonObject. However it does have a weird logic behind it, which makes it quite expandable. I’ll write a post on that later.

Posted by admin – January 3, 2013 at 15:31

** I will put an ad here one day **

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *