facebook-application

FB.ui does not work inside FB canvas. HELP!

This code works in a standalone HTML file, as well as in the index page of my iframe FB app. I get the FB.ui box correctly. But if I redirect from index to another page, and have the same code there, it doesn't work. I get all 3 alerts, but FB.ui doesn't show up. HELP! I've tried both display:'dialog' and display:'popup' but no effect ...

How to use Facebook Graph api

Hi, I am using facebook graph Api for my application where i want the data of this page. http://www.facebook.com/pages/ In this page there is option TV SHOW I want collect all information of that page. But i didn't any graph api method for this page. Please help me for this problem. ...

import profile image from facebook and show it gridview

i want to import profile image from my facebook contact list and after retrieve image i want to show it a gridview. ...

Get friends like in facebook?

Hi folks, I am looking out for a way to find the "Likes" of my friends. Hence the rest url using graph api would be something like, https://graph.facebook.com/user_id_some_number/likes?access_token=access_token Please note that user_id_some_number is the ID something like 12302892734748 and access_token is the access token. Howev...

[How to do it] stream.publish: Post on Friend's Wall

I have been searching fb forums for days..yet without no luck. Actually i want my app to have something like this::[not invitation part] http://apps.facebook.com/abhisheksrivastava/ May be it's done with php sdk or may be js sdk..but either way i cant implement it. I wish you help..please providing full code will be a great help. ...

Cross-domain Requests with jQuery doesn't work in Facebook App

I want to make a HTTP request in order to receive the contents of the home page of the logged-in user of facebook.com inside my Facebook App. The app loads inside an iframe. I am using the Cross-domain Ajax mod for jQuery made by James Padolsey: http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/ . This mod works fine...

Post as link type with Facebook Graph API

I am using the Facebook Graph API to publish on a user's wall. I give it these parameters: message name description picture link caption It posts to the wall, but it is not treating it as a link. I know this because it does not open a new tab when the link is clicked, there is no share action link, and Twitter does not pick it up beca...

Facebook JS Integration Error

I have the following code right below the body tag of my application <div id="fb-root"></div> <script type="text/javascript"> window.fbAsyncInit = function() { FB.init({appId: '136904373......', status: true, cookie: true, xfbml: true}); }; (function() { var e = document.createElement('script'); e.async = true; ...

Possible to get open graph data for comments box?

Is it possible to get a list of comments, or at least a count of the number of comments that have been left on a website with the Facebook comments widget? The widget I am using is placed inside an iFrame Facebook application. Here is the XFBML which is being parsed by the Facebook Javascript API: <fb:comments xid="fbtest"></fb:commen...

Manage Facebook Page tab apps via Open Graph API?

I have been investigating the Facebook Open Graph API. There is a "manage pages" extended permission which allows publishing to a user's Facebook Page news feed/wall via "impersonation". This is nice functionality, but is there anything more you can do through the API? Specifically, I would like to be able to Add or Remove a "Tab" appli...

Can you use your own database for Facebook applications?

I am completely new to Facebook application development, but I've got a straight-forward question. I am looking to create an application that would collect a few pieces of information from a user and store it into a database. I wanted to host the database on a MySQL server, but I didn't know how Facebook works with application informat...

How do I put a Facebook Like button on an app displayed in a tab?

Seems a silly and simple thing, but apparently Tab pages allow neither tags nor iframes, and the Like api offers both of those as the means to get a Like button on a tab. Anyone have any ideas? the app I'm working on is primarily intended to be viewed as a tab, but we want to drive awareness through likes... ...

facebook application bookmark url

Hi there, I have a facebook applications and I would like to modify its bookmark to reroute users to a non facebook url ( my app is wider than the 600px ifram facebook uses) how can I go about doing that in the App Preference in facebook. there an option for a bookmark url but it only accepts relative link to the canvas page as far as i ...

facebook social game signup and logon design

Hi, we are migrating an existing multiplayer game to be a facebook oriented. the game has flex client side, .NET server and a WCF comunication. I'm currently checking the follwing tasks: FacebookSignUp() method: I would like to create a facebook specific signup() for all facebook users. this method should automatically generate a ne...

Can I create a Facebook Application using C# ?

Hello I was taking a look at this Facebook Guide Documentation, and I was wandering if it is possible to: create a Facebook application not using PHP but ASP.NET and C#? would I have access information like e-mail, username, city/location, etc? ...

How do I enable inline video play when I send a link to facebook for YouTube videos via my app?

Facebook.prototype.post = function(options) { var data = { access_token: this.data.token, // message: options.message, link: options.link, }; if (options.type == 'image') data.picture = options.image; var url = 'https://graph.facebook.com/me/feed'; if (options.friend !== undefined) url = 'https://graph.facebook.com/...

how to upload photos on facebook apps using form multipart/form-data

Recently I am working with a facebook application but anyhow facebook is not supporting form post with $_FILES, So that I can not upload any file with php regular file upload system. Now I am trying to use file uploading with file url location to upload it in a new created photo album. Is there any easy suggestion so user can upload pho...

Post to multiple user profiles from a Facebook app

I am developing a web application that I want to integrate with both Twitter and Facebook. At a certain time, messages will automatically be published on every user's feed, for both their Twitter and Facebook accounts. I am currently working on the Facebook component. I know that in order to post to a user's feed on Facebook they must ...

How to publish LIKE feature for Photo/Video using object_id we get from Photo/Album/Video table.

Hi, How to publish LIKE feature for Photo/Video using object_id we get from Photo/Album/Video table. Comments.add has object_id, through which we can publish comments on any photo/album/Video. but how to LIKE the same. Thanks in Advance :-) ...

How to implement the users' news feed in a facebook application?

Dear all, I am a totally new-comer for developing facebook application, and I would like to develop a very simple one as the very start. Now, I find some sample resources that teach me to develop applications which when being launched, the users would find their friends' ids, or photos, and their core codes are just making use of FBML, l...