Facebook iPhone App Livefeed page, is it a UIWebView or a complex UITableView
I wonder how they make the username, URL to be special colored and also tap on them will navigate user to different pages. Any insights? ...
I wonder how they make the username, URL to be special colored and also tap on them will navigate user to different pages. Any insights? ...
Facebook's user id's go up to 2^32 .. which by my count it 4294967296. mySQL's unsigned int's range is 0 to 4294967295 (which is 1 short - or my math is wrong) and its unsigned big int's range is 0 to 18446744073709551615 int = 4 bytes, bigint = 8 bytes OR Do I store it as a string? varchar(10) = ? bytes How will it effect efficien...
This is a noob question. According to Facebook API documentation, the sex field in Users.getInfo() function returns values based on users' locale. Hence, determine the gender of user is difficult. Any solution suggested? ...
Hi all, How to execute the fql in asp.net? I used the following code, but I coult not get response. public partial class _Default : System.Web.UI.Page { facebook.Components.FacebookService fb = null; public _Default() { fb = new FacebookService(); fb.ApplicationKey = "a1eb7d8b0864cbae129891e93f2dcc96"; fb.Secret = "0d1...
I have a website based game that has login accounts that I want to integrate into facebook (not facebook connect, I want to use an iframe canvas page). My question is how can I authenticate a user and how can I check if a user is coming from facebook or directly from the site. I have been playing around with require_login() using the P...
Hi, i am not able to show permissions dialog on facebook iframe application. can any one help me? ...
I'm trying to figure out if fan/business pages are conceptually similar to regular user pages. My end goal is to publish events from a third-party Web site (new content, announcements, etc.) into the FB page that promotes the third-party site. I'm not sure where to start exactly. Been looking at the .NET Facebook SDK, and it seems focus...
I want to use http://wiki.developers.facebook.com/index.php/Fb:tabs and have the tabs load/change dynamically using AJAX. Are there any examples online or would anyone be kind enough to post an example here? Thanks! ...
I am trying to determine if a user is a facebook fan. I load the facebook JS library and initialize: <script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US"></script> FB_RequireFeatures(["XFBML","Connect","Api"], function() { FB.init("my_api_key","xd_receiver.htm")...
After authorize the current user to create an application with the createApplication function (http://wiki.developers.facebook.com/index.php/Facebook.createApplication) I'm trying to publish streams on this new application page : $facebook = new Facebook(API_KEY,API_SECRET); $facebook->api_client->begin_permissions_mode(NEW_APP...
http://wiki.developers.facebook.com/index.php/Stream.publish Shows session_key as a parameter, but get: TypeError: publish() got an unexpected keyword argument 'session_key' when I pass a session_key. /User:PyFacebook_Tutorial This appears to be outdated, unsurprisingly. /Authorization_and_Authentication_for_Desktop_Applications Shows ...
Thanks in advance ...
Hi, I looked at many similar questions here at Stackoverflow.com and searched in Google but still could not find an answer, so I am posting this new question. I have a 3rd party PHP5 website in which users can write a short message. I want to have the ability for the user to click a button to share that message as a facebook status. It ...
Hi, I need to make a MultiCast with Scribe. The problem is this: We have 4 machines. 1) Is sending the messages 2) Is receiving the messages with category A 3) Is receiving the mesasges with category B 4) MUST receive all the messages (Cat. A & B) I thought this: Make a Scribe configured in Multi mode and inside it add a Buffer store I...
I'm trying to publish to a Facebook Stream using the Facebook Developer Toolkit v3 but I keep getting this error: A session key must be specified when request is signed with a session secret What I want is just to post a link using the more detailed Publish method. My code looks like this: First I setup a DesktopSession lik...
Please help! I have been grappling with this error for days and I cannot for the life of me figure it out. I am using facebook connect and fetching a "contact_email" attribute using their api method users_getInfo. The issue is that when I execute this PHP file, i get this error: "Cannot use string offset as an array in...". This erro...
The news in the PHP world today is Facebook's HipHop, which: HipHop for PHP isn't technically a compiler itself. Rather it is a source code transformer. HipHop programmatically transforms your PHP source code into highly optimized C++ and then uses g++ to compile it. HipHop executes the source code in a semantically equivalent manner...
I have the Android Facebook-Connect library running in my emulator and I'm able to set my status with the Facebook API I have setup. However, I don't know where to go from there? Am I supposed to use the session key that this library allows me to get and make some Facebook API calls? I haven't found any code examples to even see what the...
I want to retrieve the status data posted/published by friends of a user. I wrote the following code, but only get the user's own status updates. Could someone please help to tell me what's wrong with my code? Thanks! NSString *fql = [NSString stringWithFormat:@"select uid,message from status where uid in (select uid2 from friend where ...
The jquery autocomplete provided by http://docs.jquery.com/Plugins/Autocomplete can work on a INPUT field or a TEXTAREA field. I have a use-case to make a DIV element act as a TEXTAREA by setting its attribute to contenteditable="true". Can I use the DIV's DOM handle for the autocompleter to behave as a textarea for the autocompleter. Cu...