facebook

How can I publish from a Facebook fanpage to a fan's wall?

Hello, Is it possible to repopoduce this type of dialog (and post a status update to the user profile) on a Facebook fan page? http://wiki.developers.facebook.com/index.php/Feed_Forms Thanks. ...

Connect to Facebook chat using PHP?

I'd like to make a bot that periodically logs into facebook's chat network and stores snapshots of the roster. I'm aiming for a dataset that can tell me which of my friends are online when / how often as a demonstration of the privacy risks of facebook. Is there a library I can use to connect to Facebook's XMPP chat network using PHP? ...

How do I get require_login()-like functionality using the new PHP Client Library for Facebook?

Howdy. I've been tasked with making a Facebook game, but I'm new to Facebook development, so I'm just getting started. Apologies in advance if this is a no-brainer to people. I'm having trouble following all the examples I see on sites, and I keep running into missing pages in the Facebook documentation when I am trying to read up. I...

Facebook application development starter question

Hello everyone,I am a new facebook application deverloper. I followed this tutorial:http://www.adobe.com/devnet/facebook/articles/video_facebook_quick_start.html but I have one question is that,the tutor mentioned "Facebook Library downloaded from the GoogleCode page",I searched through the Facebook Developer Pages,but couldn't find suc...

Facebook: any way to monitor when user clicks on Like button?

Hi all, writing my first facebook webapp and i have some questions. I'm using their new Graph API + JS library. The idea is that in order to use my webapp, user has to 'Like' facebook page A. Suppose user is logged in. I have to check if he 'likes' page A. If user doesn't like that page, i display 'fan box' via FB.XFBML.parse('<fb:...

facebook permission dialog php-sdk shaded inside iframe application

i'am having trouble with facebook php-sdk new api, permission window i am using facebook connect inside the facebook iframe application http://tinyurl.com/2aojf5l when i try to login with following url login windows laying out well inside facebook application but permission diolog is being overlayed by shaded screen what can cause th...

facebook javascript api

I am trying to get my status from facebook using the javascript api. I have the following code: <div id="fb-root"></div> <div id="data"></div> <script src="http://connect.facebook.net/en_US/all.js"&gt;&lt;/script&gt; <script type="text/javascript"> (function(){ FB.init({ appId : 'SOME ID', status : true, // che...

Adding Facebook Log in button to PHP code

I am trying to add the new Facebook log in button to my registration page on my Drupal site. I know the following code is wrong, but I don't know the right syntax to implement it: function facebook_user($op, &$edit, &$user, $category = NULL) { switch($op) { // User is registering. case 'register': // Add a Facebook login button. ech...

Facebook Like Box

I'm trying to add a Facebook "Like Box" to an existing website, as described here The Page I'm promoting works just fine in preview-box on that page. But when I copy/paste the code as shown to my website, it instead shows a fraction of an empty facebook page with only a partially visible error message. <iframe src="http://www.facebook...

Facebook.php Changed ?

I am making my first Facebook App and nothing is working as stated in the documentation. As an example, I have facebook.php on my server and am calling this line: $friends = $facebook->api_client->friends_get(); but I get a "call to undefined function friends_get()" I see that there is no "friends_get()" function in the facebook.php...

Real time App with Facebook

Does Facebook provide access to any real time APIs so that you can respond to events as soon as they happen? If not, what alternatives are there and what are their limitations? For example, if I use polling instead, will they limit my api calls? And if I try using RSS feeds, about how much delay can I expect? Or maybe it would be possibl...

Facebook: obtain album id just created with Photos.createAlbum

Hello. I'm developing an iPhone app that creates a Photo Album to hold the pictures that the user is going to upload. On - (void)request:(FBRequest*)request didLoad:(id)result { I'm trying to obtain the aid returned with this code: else if ([@"Photos.createAlbum" isEqualToString: request.method]) { NSLog(@"[Photos.createAlbum...

FB.ui stream.publish in an iframe application shows a popup instead of an iframe dialog

I am trying to show a "share" dialog using the following code, but it is displayed as a new window. This is an iFrame application inside Facebook. Does someone know how to make it show the "share" in a standard FB dialog iframe and not a new window? <script src="http://connect.facebook.net/en_US/all.js"&gt;&lt;/script&gt; <script type="...

How to set up RPX widget and facebook app to be able to authenticate with rpx_now?

Using the sample app for rpx_now gem ( http://github.com/grosser/rpx_now_example) on localhost:3000, I have successfully logged in via Google Accounts, myOpenID, Yahoo, but cannot make it via Facebook. In the RPX app/widget settings I have set my facebook-app key and secret. In my facebook app settings, the Connect URL is myappname.rpx...

facebook application description & logo/image

is it possible to return Facebook Application Description & Logo/Image just like we can return Application Name using <fb:application-name /> ...

Uploading photos to facebook, Facebook App or Facebook Connect?

I am working on a website that allows people to upload photos to their facebook account (as if the user manually uploaded those photos to facebook), and the uploaded photos will be hosted on facebook instead of my server. Should I develop a facebook application or use facebook connect? ...

Facebook FQL Question

I'm trying to use the Facebook Javascript API to run FQL queries, and it works fine if I try and get users by username or uid, but doesn't work when I'm searching by name. function get_username() { var name = prompt("Enter name: ") FB.api( { method: 'fql.query', query: 'SELECT username FROM user W...

Facebook Toolkit, send messages to users wall

Hi! I need to send messages on users wall or friends wall, I know how to post messages on my wall but how to post messages to another user wall?? thanks ...

Difference between Facebook and Twitter APIs

Hello, I am looking for any kind information that shows the difference between Facebook and Twitter APIs. (IE what you can retrieve via API, privacy difference etc) for my graduation thesis as a starting point. I will be grateful if you point out any source of information. ...

Multiple Facebook Like buttons (different activities) on one page?

Hello, My one web page uses Ajax to display information about multiple activities. I'd like to have one Like button per activity. This would mean multiple Like buttons on the page, one per activity. Can this be done? Can the Like button's url include #!state1 ? Eg, a web page is located at www.example.com/index.html It has multiple ...