[Solved] how to fetch user facebook friends names,count and id in app? [closed]

You’ll only be able to get the friends which also use your app, and you’ll need the user_friends permission for that. Please read the docs first: https://developers.facebook.com/docs/apps/changelog#v2_0_login https://developers.facebook.com/docs/graph-api/reference/user/friends Quotes: Friend list is no longer part of the default permission set and has its own permission: Asking for access to a person’s friend list is now … Read more

[Solved] HTML iframe not working when i write src= of facebook

Updating the page reference in the source (src) attribute will display the page you specified. <iframe src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishlaspalmas&amp;width=320&amp;colorscheme=light&amp;show_faces=false&amp;border_color=&amp;stream=true&amp;header=false&amp;height=395″ scrolling=”no” frameborder=”0″ style=”border:none; overflow:hidden; width:320px; height:395px;” allowTransparency=”true”></iframe> src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishbudapest&width=320&colorscheme=light&show_faces=false&border_color=&stream=true&header=false&height=395″ src=”http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fbigfishlaspalmas&width=320&colorscheme=light&show_faces=false&border_color=&stream=true&header=false&height=395″ solved HTML iframe not working when i write src= of facebook

[Solved] rewrite this code to use in .NET 2.0? [closed]

Shoulbn’t be that hard to figure out but here: //instead of var use the actual type FacebookClient client = new FacebookClient(); //again use the actual type IDictionary<string, object> me = (IDictionary<string, object>)client.Get(“me”); string firstName = (string)me[“first_name”]; //May use ‘me[“first_name”].ToString()’ string lastName = (string)me[“last_name”]; string email = (string)me[“email”]; solved rewrite this code to use in .NET … Read more

[Solved] GIF pictures on Facebook wall [closed]

You can’t, Facebook isn’t supporting animated GIF images and once posted it’ll be flatten. What you see in the sample you’ve provided isn’t wall but application running in Page Tab, those applications are not part of Facebook and developers are free to do whatever they want unless it not violate platform policies… Update: Aside of … Read more