facebook

Count Comments for Facebook Posts?

Hi there, i have a bunch of facebook post's, Any ideas how to get the one with the most comments as fast as possible? thanks for helping ...

Can I use the Facebook graph api to get user's friends profiles pictures ?

hi. I'm new to facebook development, after testing the adobe api in a flash game I decided to test using the graph api communicating with my flash game. After doing basic stuff like connecting and getting my user's data, i was wondering if it's posible to get my user's friends profile pcitures, so i can pass them to UILoaders inside my...

Simple post to Facebook page from flash using querystring

Hi Can someone point me to a simple example of posting to a user's facebook pages using a query string? ie I'm not using facebook connect. ...

Issue with Facebook c# toolkit and authentication

Hi All, I've used the excellent Facebook c# SDK http://facebooksdk.codeplex.com/ to integrate a website with facebook to get profile info etc but now I need to actually create a canvas app in an iframe. I'm just starting simply with the MVC sample app in the toolkit and have set the app id, key, secret, canvasPageUrl but when I go to t...

Connect with Facebook buttons - how does the pop-up window work?

Does anyone know how facebook connect buttons generate the pop-up window that you use to sign in? I would think that there's a code like this.. <a href="#" onClick="MyWindow=window.open('http://www.yahoo.com','MyWindow','toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,width=600,height=300'); retu...

Facebook via iphone without using an iphone...

How can i trick my wall post using an application or any to trick my wall post so it say 11hours ago via iphone for facebook.It looks so cool... ...

how to query ALL the pages that a facebook user shared with "like it" button, using the Facebook API

hello, I am trying to get ALL the pages that a Facebook user shared with the "like it" button. No luck so far to get them all (some work, but some others don't). I tried the graph API https://graph.facebook.com/me/likes And FQL select object_id from like WHERE user_id = [userId] But, testing with my profile, I am still missing man...

PHP: Facebook / Twitter Integration

Hi, I have a CMS built in php and I'm looking to add Social Networking integration to it. I basicaly want to pre-populate the comments and contact us forms with the Facebook/Twitter information of the visitor if it's available. Is there something reliable already built and tested or should I start from scratch? Thanks. ...

How to create Rails app with Facebook single sign-on ?

I am creating a rails application where I need to allow users to login to my site with their facebook IDs. How do I do that. I don't understand the facebook documentation much. Are there any other clear resources on the internet? thanks ...

Facebook auth token and asp.net mvc

Hi We have an ASP.Net MVC site that needs to authenticate to facebook to post photos to a user account. All fine so far. Facebook redirect back to the mvc site. Again fine. The url that facebook replies with include the access_token BUT this is prefixed with a # char and MVC strips this and the token from the url so the controller a...

how do I upload a photo to facebook from my app, and have it NOT post to the wall?

My iPhone app uploads pictures to the user's Facebook account, and they are automatically placed in the app's photo album on Facebook. In the majority case, the user's wall is also automatically updated to denote that the photo was recently updated. But I dont want this, because I prefer to make a separate wall post with a link to the ...

Facebook Connect FB.CommentClient.add_onComment Method inexplicably stopped working.

I've been using FB Connect for some time now. The code below has worked fine since I first implemented it. In the last week I did some server configurations to enable mod_deflate and it has stopped working. Comments work, only the callback function has stopped working. Has anyone had a similar experience? Can anyone recommend a ...

facebook profile pic - how to place a border?

I tried to put a border around the profile image received by . The border doesn't seem to wrap around the image correctly like normal images. Does anyone know the right way? Thanks! ...

Facebook Graph API and friend's email

Hello. There are some question on the StackOverflow about facebook & email, but after reading them I still have a problem with retrieving users emails. Our app implemented on Flex and uses REST API. And previously it used notifications.sendEmail. App has publish_stream and email permissions (checked with users.hasAppPermission). I trie...

How to make Asynchronous nonblocking thread FACEBOOK in Android

Hello i am trying to make facebook asynchronous non blocking thread in android. due to which our UI is run separate thread but i am unable to do that can any one tell me how to do that. and If possible pleade give me one example. Thanks......... ...

JavaScript Event Handler in ASP.NET

I have the following iframe control (intended to be a facebook like button): <iframe id="likeButton" src="http://www.facebook.com/plugins/like.php?href=" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" onprerender="setupLink()" </iframe> I have the java...

Facebook SDK and Silverlight

hi, I have started Silverlight based application using official Facebook sdk. Having few issues right now: I cannot change Profile image , do not know if it is possible from silverlight client or maybe via WCF service I cannot load any photo or album i use Photos.GetAlbumsAsync but no effect ? 3 I cannot send message any of friend vi...

How can I get my friends from Facebook in my application?

I am developing an ASP.NET application. I implemented Facebook API in my application now I want to access email addresses of my friends on Facebook. I successfully connected Facebook with my application, but when I use FacebookApi.friends.GetList() it will give only friends userids then I will fire a FQL for each friend userid to access...

How does Facebook achieve good performance?

Almost everyone has a Facebook account, even people who are not familiar with the Internet. With millions people actively using Facebook, updating their status, replying to messages, uploading photos and so on, how is Facebook's page still loading very fast? I was told that Facebook was built using only PHP and MySQL, so how can Faceboo...

Facebook php sdk Retrive friendlist problem

Title should say my words.Here is my basic code... <?php require_once 'fb-sdk/src/facebook.php'; // Create our Application instance. $facebook = new Facebook(array( 'appId' => 'xxxxxxx', 'secret' => 'xxxxxxxxxxxxxxxx', 'cookie' => true, )); $accessToken = $facebook->getAccessToken(); $session = $facebook->getSession(); $...