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...
Does anyone have a sample showing how to query Facebook user photos from Silverlight?
...
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!
...
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...
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 ...
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...
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....
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?
...
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...
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...
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...
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 ...
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...
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/"></fb:shared-button>
This is documented(poorly) here: http://wiki.developers.facebook.com/index...
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...
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...
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...
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 ...
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...
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...