facebook

Is there a way to make the Facebook button appear correctly in a UITableView?

I'm trying to get Facebook Connect functionality working in my iPhone app. I'm wondering how to get the button lined up correctly in my UITableView: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableV...

Facebook.php and facebookapi_php5 documentation

Wher can I find a good documentation on these two PHP files and a more detail & indepth use of each function? Facebook documentation is... not informatitve enough. lol ...

Having difficulties with Notifications.sendEmail from the Facebook API using PHP

I'm trying to send an email through the Facebook API. I've added the application and given it the email extended permission. I've been following the instructions at http://wiki.developers.facebook.com/index.php/Notifications.sendEmail and am using their sample code (albeit with correct userids in place of the ones they list): $uids = ar...

adding jquery to a facebook application

How do I include and use jquery in a facebook app that I am creating? ...

Facebook High Scores Server

I want to merge my High Scores with facebook. In other words, I don't want to mantain my own score server but I would like to let make the dirt work to facebook. So I want to publish new scores and retrieve them to display in my game. Can I do it? What API can I use? Is it possible with REST? EDIT: Many games in fb show global scores ...

Can we fetch fans of a particular page on Facebook?

Can we fetch fans of a particular page on Facebook? through PHP? if not is there any hack like, by becoming a fan of that page via PHP? ...

facebook messages result set like

I'm trying to get my head around with the group by command, basically I'm trying to select all messages of a user, group them by subject then show them - just like how face book does it. The result should have the latest message id, the sender's id, the date, and the total count of the messages in that subject. The message table can lo...

Posting on twitter/facebook from my site using jQuery

I want to display some text on twitter/facebook when a link is clicked on my website. Is there a way in jQuery to do that? ...

Making a facebook app

I plan to make an pretty big application on Facebook. Would it be a wiser choice to get the code working on any hosted site before actually modifying it to be used in FB? or would it be too much of a pain to make the code compatible with FB? ...

REST API in c# facebook

I am trying to use REST API to get friends lists from fb. ArrayObject is filled with: SecretKey API_KEY Method = "facebook.friends.get" call_id uid v = 1.0 sig = md5 code And I'm trying to make the call with: public string GetResponse(ArrayObject Parameters) { // Set the encoding type theRequest.ContentType = "applicati...

Which facebook API to use to tap into Fanpages?

We are trying to leverage facebook API to extract data on various companies' fan pages such as discussions, reviews, etc? How can we we do this? Please specify which API to use. Will we require API key as well as secret key for each company's fan page? ...

iphone application with facebook api

Hello I am creating an application in which there is a use of facebook API. I am successfully logged in facebook from my iphone simulator. Now I want to get friends list and their current_Location from my application. for that I have written a code -(IBAction)FriendsPressed:(id)sender { NSString userId = @"XXXXXXXX"; NSString fq...

Creating a facebook application

Hi I created a desktop application. I was wondering what I should put for my Canvas Callback URL. I tried to define it as local (http://localhost:8084) but it doesnt accept it. I need it to get the session using http://www.facebook.com/login.php?api_key=YOUR_API_KEY&v=1.0 Thanks! ...

facebook newsfeed example.

I'm trying to access the news stream to pan for certain events I'm running into a few issues with the facebook developer toolkit does anyone have or can point me to an example of getting the news stream? ...

Submit comments from my website to the users facebook wall

HEllo, Currently on my website - I have a form which users use to post comments on the website. I want to add an extra check box - that says "Post to my facebook" wall. So if they check that - the comment they post on my website - should also be posted on their website. They should not have to type the comment again. How do I go about ...

How can I post to a facebook wall from a c# web service?

Hi All, I've tried a bunch of things and can't figure out how to post content to a facebook wall from a web service. Does anyone know if it's even possible? It seems like the only way to post content is to include a sign-in page within a web site, which isn't what I'd like to do. For twitter, I was able to tweet a message in under 10 lin...

Using facebook webservice able to run in localhost ,but not inside in facebook server

I am trying to develop facebook application using facebook web service as friends_get. I wrote a coding in jsp like<% try { String format = null; String flid = null; RestResponse result = FacebookSocialNetworkingService.friendsGet(request, response, format, flid); if (result.getDataAsObject(facebook....

Best UI/design patterns to find my users' friends who are also my users

What's a good design pattern to find my app's users' friends (facebook, linkedIn, twitter), etc who are also configured with my app? Eg, my party app has party organizers. The organizers add party people by name/email. Later a party person logs in via Facebook. I want to show her which of her friends will also be at the party. Should I...

How to tell if a user is a fan of the fan page

Hi, I'm working on a FBML fan page for a client. I need to perform a check to see if the current user is a fan of the page. I tried using the JavaScript API but I've found this is not compatible with FBML. I have looked through the FBML page on the developer wiki and found checks for practically everything else but no is user fan che...

Facebook staticFBML detect fan

How do I detect if a visitor to my staticFBML page is a fan or not? Please help! ...