facebook

Sanity check: Is the Adobe ActionScript 3.0 Facebook library deprecated?

Unless I am doing something completely wrong, it seems the "official" AS3 Facebook Library from Adobe seems to be out of date. It seems to only return about 3/5 of a user's data, with Status Updates being the most notably missing piece. The last commit appears to be at least 8 months ago. The library also appears to be using the older RE...

facebook connect: check if user has permissions with javascript

i am creating login code for facebook connect on our site, however i cannot find how to check if the user has the required permissions. with the old javascript, one dialog would be opened for each permission and the return code would say if the permission was accepted or not, how does it work with the javascript code? here is the code ...

Uploading photo with caption or status to Facebook on iPhone app

I managed to implement Facebook connect on my iPhone app and allow the user to upload a status update via the app. I now want to include a feature to allow uploading of photos together with a caption or status update. Does anyone know the relevant code for this? I think I'm supposed to use the photos.upload API in FB but am not too sur...

Getting user info after login for facebook application

Hi, I have written a small piece to get the user to login : <?php include_once ('facebook.php'); $api_key = 'xxxxxxxxxxxxx'; $secret = 'xxxxxxxxxxxxx'; global $facebook; $facebook = new Facebook($api_key, $secret); $facebook->require_frame(); #Ask user to login if not logged in $is_tab = isset($_POST['fb_sig_in_profile_t...

Why does Facebook Connect for iPhone login dialogue need a time delay?

I'm new to iPhone programming and stumbled upon an answer to a question, but I was hoping someone could tell me why. I'm using Facebook Connect in the app. Since my app requires a login, I was calling the login dialog programmatically rather than with a button. I am using the SDK example approved code: FBLoginDialog* dialog = [[[FBLo...

How to get friend's birthday list using facebook api?

Hi everyone! I am trying to get friend birthday list. But how to find using my api I dont know. Please suggest if u have any idea. Thanks Mintu ...

NoClassDefFoundError when running Facebook official example

Sorry I am new, stackoverflow does not allow me to post image and links... I try to use Official Android SDK (http://github.com/facebook/facebook-android-sdk/). I install the SDK and try to run the Example At first, it fails at "build", it cannot find the Facebook SDK, so I try to follow the steps found in SDK page: Add a dep...

How do I use JSON objects from Facebook with PHP?

Hiya! http://developers.facebook.com/docs/reference/api/event I'm trying to grab some values from a Facebook JSON even object in PHP. Namely, title of event, location, and people attending. Using the Graph API. <?php $jsonurl = "https://graph.facebook.com/331218348435?access_token=2227470867|2.rtBZMkVIVgKGZ7Xr4px3Dw__.3600.1280822400-...

how to make a facebook-like social network

I started since a while making a new social network using ASP.NET with C# just like facebook and I found that it doesn't make sense to make something already exist . but i don't care :D I'll make it any way and I need to your opinions about the database design for the news feed, friends and comments !! News Feed SenderId - ReceiverId ...

iphone : facebook application responce error message

hi all, I am trying to integrate facebook in my iphone application. after logged in from my iphone I am getting response message as "application responce error" can any one help out , why I am getting such an error??? thanks in advance... ...

how to enumerate the response set from FQL

var response = _facebookAPI.Fql.Query(String.Format("SELECT uid FROM event_member WHERE eid={0}", myevent)); I would like to convert response to List<long> uids ...

Facebook Application integrating Chat

How can I integrate a php web application with facebook chat? I have integrated the facebook application and successfully coded the granting of xmpp-login permission. But now i need to connect using Jabber using the X-FACEBOOK-PLATFORM mechanism. How can i do that? Facebook api reference has some explanation on these and a Python scrip...

Facebook api: show dialog window for the user select page (manage_pages extendend perm).

Hi. I want ny users to give ny app "manage_pages" extended pemission but i want my users to be able to select which of their pages they give permission to. I have this code which is responsible to autenticate and get the users permissions: $('#btn-connect-facebook').click(function(){ FB.login(function(response) { if (respo...

facebook api: do i need to store each user's friends list in order to create a who's online component (between friends) ?

this is a generic question about a facebook application creation. I want the user to have a who's online component that shows who's among his friends are currently using the application. does it mean that i actually need to store each user's friends list in my own database and to filter from that the users that are currently using my a...

FQL facebook query language: how can i query the list of friends of a specific user that has my application installed?

Hello. When a user logs in to my facebook application, i want to show him a list of all of his friends that has my application installed. can I use FQL to query who's of his friends have my application installed? and if so how ? thanks! ...

What are the ways a facebook application can communicate with a user?

I am a graphic designer who is currently designing a facebook application. I wish to know the various ways that a facebook application can communicate with users of my application, and the limitations of those methods of communication. e.g wall posts, emails etc ...

Facebook FQL returns <fql_query_response list="true"/>

Hi, I am trying to get a facebook fql query to work using the browser, I have a valid oauth token (I can make graph api calls with it). Here is the url I tried: https://api.facebook.com/method/fql.query?query=SELECT metric, value FROM insights WHERE object_id=89192912655 AND end_time=1280430050 AND period=86400 AND metric='page_fans'&a...

facebook error The page you requested was not found. - When inviting friends to join

Hi all, I am a .net developer, using iframe xfbml and asp.net of course. I am getting the following error: The page you requested was not found. You may have clicked an expired link or mistyped the address. Some web addresses are case sensitive. * Return home * Go back to the previous page I am using the request-form tag as followi...

Facebook API - How to get user's address, phone #?

Is anyone able to get facebook user's address, phone # using FQL or Graph api? Have tried the following FQL and was able to get 'Current City' and 'Hometown' which are under 'Basic information' but not the 'Address' or 'Phone' which are under 'Contact Information'. SELECT name,first_name,last_name,birthday_date,current_location,hometow...

Facebook Connect <fb:login-button> No Longer Firing Callback (As of today)

Hi All, Came into the office today to do some more work on my nearly completed Facebook Connect website application. And i have discovered for some reason, the "onlogin" event of the fb:login button FBML control is no longer getting fired!!?! To anyone else that has a Facebook Connect FBML app (and using the JavaScript API for authen...