facebook

facebook url question (#!)

On every page this part is included: home.php#! For example http://www.facebook.com/home.php#!/profile.php?id=1 Whats the point with "#!"?? ...

"Like button" plugin of facebook.

Hi, I just included the like button plugin of facebook on my site. Now, I want to send messages or send an update to those who liked my page. How to do so? Please help! Regards, Sanket ...

What is this Javascript code? Explain

This is a snippet from the Facebook Developers site. <div id="info"></div> <script> var info = document.getElementById('info'), update = function(response) { if (!response.session) { info.innerHTML = '<em>You must login using the controls at the top.</em>'; return; } FB.api( { method: 'fql.qu...

Tag photos outside Facebook using FBConnect and Wordpress?

Hi! I have downloaded a Wordpress plugin that enables facebook Connect in my site, allowing users to "comment out" and "like" the posts and photos. As most of users are already logged in facebook when they reach our site, is it possible to let them tag their friends in the photos, and save that information so people can later see the na...

Post Tweets to Twitter from FaceBook using ASP.Net C#

I have created a facebook application using FaceBook ToolKit for .Net, What I am trying to do is create a WebApp for FaceBook which allows users to tweet. I have also read about twitterizer library, that allows ASP.Net to create Apps for Twitter but it comes with OAuth authentication where a user is redirected to Twitter.com. What I am...

sfFacebookConnectPlugin: Authentication problem

Hi overflowers, I try to get the sfFacebookConnectPlugin to run by following the tutorial on the symfony homepage. Everything seems well configured. But when I try to login with sfFacebookConnectAuth/signin. I get the form error "The username and/or password is invalid.". I even don't know where to start with the debugging. First Ste...

how do i know how many Fans i have in facebook

i tried quering the like table but i get an empty response: SELECT user_id FROM like WHERE object_id=119293808095672 http://developers.facebook.com/docs/reference/rest/fql.query ...

iphone facebook - how to share movie to wall using fbstreamdialog

Can some one suggest me a tutorial related to iphone code for sharing a mp4 file on facebook wall using Facebook API. I'm trying to use FBStreamDialog, but failed....... ...

API calls using FBJS within FBML page.

Hi, I know that it is possible using an Iframe app, but haven't found any satisfactory solution for FBML pages. Does anyone know if it is possible? ...

Which SDK to use for Asp.Net with Facebook

I am working on a Facebook canvas flash app and my server is in Asp.Net 2.0.. I checked the facebook developer wiki and it seems like there are different Asp.Net SDKs available ( http://bit.ly/acQilT ).. Please suggest me which is the best one.. ...

$facebook->getSession(); not working. No idea why?

<?php require 'facebook.php'; // Create our Application instance. $facebook = new Facebook(array( 'appId' => '130407366991766', 'secret' => 'f692cb73889096ca0835a55bc0a82c34', 'cookie' => true, )); // We may or may not have this data based on a $_GET or $_COOKIE based session. // // If we get a session here, it means we found ...

Facebook fan page interaction

I've seen a lot of questions on here asking how to publish to a Facebook fan page, but not how to publish from a facebook fan page to an external site. I'm admin of a fan page and would like to make updates for my audience from Facebook. These updates I'd like to appear on my website as well. Does anybody know of a way to do this? Than...

Adding Facebook Connect to a CodeIgniter website

I'm having problems trying to connect my website to Facebook. What I would like it to do is allow users to augment their accounts by connecting them to Facebook (I do not need people to be able to login with Facebook, I am using OpenID instead). My website runs in the CodeIgniter framework. What I will do is remove everything that I've ...

Problem with Facebook Toolkit

Hi, I am using the latest Facebook Toolkit. I want to retrieve all albums of the current user. I use FacebookService.GetPhotoAlbums(), but the result has an itemcount of 0 :-/ No error is raised. Do you have similar experiences? ...

Facebook Graph API - Get Event that a Page have created

How can i get all the Events a Page have created? I've tried the following: https://graph.facebook.com/PAGEID/events But i don't get any data back. Can someone help me? Thanks in advance ...

Getting a facebook profile picture from an email address

I'm trying to get a user's facebook profile picture based on their email address. Effectively, I want to offer my users the option between using Gravatar for their image, or Facebook. However, the only way I know of to get a user's facebook image is via: http://graph.facebook.com/[FBOOK USERNAME]/picture?type=large Since the usernames ...

username urls like twitter and facebook

how does twitter and facebook etc. make unique url eg. twitter.com/billgates if i would like to do the same (give my users unique urls with username), is it a application or do you crate a directory for each user with a index page?? by the way im using coldfusion. thanks ...

facebook fanbage id

i get the face book user id who create face book page,now i need to get page id to display like box in my website. different users have there own face book pages.however i know to get there facebook user id is there any solution or alternative solution,something like fquery or etc??? ...

can not update facebook status message

i am using the following code to post status update to a users profile in facebook but every time it just returns could not update what is wrong here ? def fb_post_message(request): import urllib2 try: urllib2.urlopen('https://graph.facebook.com/me/feed',"message='hello world'") except: return HttpResponse('...

Get Facebook fan page ID

I've got the Facebook user ID of the user who created a given page. Now I need to get the page ID to display like box in my website. Different users have their own Facebook pages; however, I know how to get their Facebook user IDs ...