facebook

Facebook problem + django

I am trying to write a facebook app where user can see the status history of his friends. Everything seems to work fine until I try to save the status information in my DB. here is code : class UserStatus(models.Model): facebookid = models.IntegerField() time = models.IntegerField() status_msg = models.CharFie...

facebook API from Silverlight

Does anyone have a sample showing how to query Facebook user photos from Silverlight? ...

How to upload video to Facebook

I am working on a PHP/CURL project that uploads videos to the various websites. Is there a way to post a video to the Facebook without creating an application? I found a way to update status info by posting to the Facebook Mobile version URLs but mobile version doesn't support video upload. All suggestions are highly appreciated! ...

Facebook Connect Implementation questions

I hope this is allowed but I have a number of questions regarding Facebook Connect, I'm quite unsure on how I should approach implementing it. I am working on a live music type service and currently have user registration, etc. If I were to implement Facebook Connect alongside this, would I still be able to email the Facebook Connect us...

Update facebook status from site

In my site page one text box and publish button. When i clicked on button which is a text in text box its published on facebook as status. For this update status user have to allow this application on facebook. Once user allow this application whenever user clicked publish that text will update status of facebook. and also user need not ...

Linking Facebook Connect

Hello guys, I've started working on integrated Facebook Connect with my app. I have a slight lack of knowledge problem though. I can perfectly make it so you log into Facebook Connect on my site, etc, shows your details all FB Connect functions work. But, how do I make it so I can store the facebook user ID into my MySQL database as pa...

Facebook Connect Dialog Popup

Hello, When using the "Connect" facebook connect button, when I click it, it opens up a new popup window outside of the current window. This is quite annoying, how am I able to use the inline modal dialog that is found on most sites? I've attached a sample site to see if you can make anything out of it. http://bit.ly/c9Emi Thank you....

Would nhibernate be used in large scale projects like say facebook? (for arguments sake)

Hi, For those who know the inner workings of nhibernate, do you think a large scale web application like say facebook/myspace would use nhibernate? Or is nhibernate well suited for more low traffic sites like company sites etc? i.e. not enterprise ready because of its chatty nature? ...

An FBML skeleton/sandbox page?

Does anyone know where I could find a decent skeleton page or example for creating an all-FBML Facebook app? I've looked all over the official wiki and done a bunch of searches, but I can't find anything reliable. Most of the examples in the wiki are either outdated, broken or oversimplistic. I can do 'Hello World' - now I need the re...

Determining if a facebook application has been bookmarked from the Facebook REST API

I'm running a Facebook App as an iframe and need to discover if it's already been bookmarked. I know it's trivial to tell if a user of your facebook app has already installed it, but how do I go about determining if they've already bookmarked it? To be clear, I'm not referring to a browser bookmark, I'm talking about the bookmarks bar w...

Using OpenID to prove Stackoverflow membership

Here's the deal: -Flair pretty much demands a Facebook app -I'm working on learning the Facebook platform Therefore, I've written a dinky little Facebook app to embed your Flair into a box on the side of your profile. If you're interested and on Facebook; beware that this is very much a work in progress, prone to change and has a whole...

Facebook Connect Dialog Doesn't Auto Close

I have implemented Facebook Connect into a HTML page exactly as the tutorial explains here http://wiki.developers.facebook.com/index.php/Trying_Out_Facebook_Connect However when after a user has logged in using the Facebook Dialog, the dialog doesn't close, just shows my webpage in the dialog box? Has any experienced the same problem ...

Destroy cookies in rails, facebook connect, facebooker plugin

So I have sort of a weird situation going on. I am using the Facebooker plugin for rails where I want users to be able to login and logout with their facebook profiles. However, once users logout, if I refresh the page, it logs them back in. This is only when users log in with facebook connect. I think the problem is that a rogue coo...

Stupid Facebook Connect question about customizing the share-button

I really hate asking about anything retarded as Facebook Connect on SO, but their own development forums are horrendous. We're implementing a Facebook share button using this: <fb:share-button class="url" href="http://oursite.com/"&gt;&lt;/fb:shared-button&gt; This is documented(poorly) here: http://wiki.developers.facebook.com/index...

Submitting a link via iPhone -> Facebook Connect

I'm trying to post links through the iphone facebook connect without using the feed control.. I want to simulate how the publish a story works on facebooks website, where i pass a link, and it returns back an image, story title, and a link. Right now I only know how to use the feed control, but I'm thinking there has to be a way to use p...

HttpResponseRedirect django + facebook

Hi, I have a form with 2 buttons. depending on the button click user is taken to different url. view function is : friend_id = request.POST.get('selected_friend_id_list') history = request.POST.get('statushistory') if history: print "dfgdfgdf" return HttpResponseRedirect('../status/') else: return direct_to_template(reque...

Ideas for designing a Secure, "Low Cost" method for confirming client-side game results

This is more a system design question/challenge, than a coding question. Basically, I'm thinking of throwing together a Bejeweled-esque game on Facebook using just HTML, CSS, and javascript. This is mostly out of a desire to learn all the little caveats of FBJS via a non-trivial project. So here's the deal. When developing for Facebo...

How can I send an invitation request using the Facebook API?

I would like to send an invitation request from my Facebook application written in C#. Here is what I tried: _fbService.API.notifications.sendEmail(DataList1.DataKeys[e.Item.ItemIndex].ToString(),"Invitation to play a game", "You are invited to play the game",""); This does not work, it only sends a notification, not a request. What ...

Facebook add profile box for iframe app

I have an iframe app that only really has a canvas page. I need to integrate a profile box with this app. A lot of tutorials have you editing the Default FBML under profile box settings, but that option doesn't exist anymore. I'm curious how to set default FBML for my iframe app and how to allow the user to add my app's profile box to...

Need help for facebook fql query

Hi, I wanted to know why is this code wrong. new_query = "SELECT time,message FROM status WHERE (uid=%s % request.facebook.uid) AND time > someval.time" new_result = request.facebook.fql.query(new_query) Someval.time is correct time format according to facebook time format. So why does it gives me wrong code?? new_query = "SELECT ti...