Hi, I am working on a web site that lets members sign up for classes... and I'd like to implement Facebook Connect in some way so that when someone enrolls in a class, it can pop up a window and say "hey, 12 of your friends are also enrolled!" and show the friends.
I know this is possible, but in looking at the Facebook Connect docs, it...
i use FBML for the FB application
I have a flash and the flash suppose to call a javascript on the page. I read so many websites trying to figure it out but still having problem.
Here is the Webpage with the javascript:
<fb:fbjs_bridge/>
<div id="swfContainer"></div>
<script>
// the javascript to call and change the text of ztest001
f...
Hi, i would like to know if i can develop a OpenSocial based application for Orkut, Facebook, twitter with commercial purpose
...
I have a simple Flash just put in for an facebook app.
it is so simple that only one frame and one text box. that's all.
I have this
<fb:fbjs-bridge/>
<fb:swf swfsrc="http://path/test2.swf" width="100" height="100" />
<script>
<!--
-->
</script>
and I have no error to show the flash in Firefox & Chrome.
But in IE, I get this:
V...
I am trying to upload a video using PHP API. i dont think it is working at all. It just throws an error - Invalid file type. Has anyone uploaded videos using this function? or is there any other way around??
...
how can i upload videos to facebook using php api? i tried videos_upload function but its not working for me :(
i have searched everywhere but cant find any useful info. please advise
...
On my site, user's post goods for sale (similar to Craigslis). I want to create the capability for user's to have it post to their facebook profile automatically from my site.
The scenario I'm imagining is this.
User creates an account on my site. In their profile, they allow my site to post to their facebook profile. From then on, any...
I am trying to add a fan box on my fan page using the tag. But it just doesn't get rendered on the page.
I also tried using an as mentioned in http://wiki.developers.facebook.com/index.php/Fb:fan, and setting its source to another file which contains the code for tag. But even that doesn't work.
Any help regarding this would be appre...
Is it possible to allow access for an api through API.?
I dont want the user to manually Allow an application using Allow page??
Is this possible???
...
Hi,
I'm trying to get my head around whether it would be possible to do something with an FQL multi-query rather than multiple API calls.
Here is my code:
var queries : Object = {
"user_list":"SELECT uid2 FROM friend WHERE uid1 = "+uid
,"event_id":"SELECT eid, start_time, end_time, location, pic, name FROM event
WHERE eid IN (SELE...
We are using Facebook's Live Stream widget to go alongside a live video stream. Worked well but I am trying to find out how many wall posts/status updates were made through the widget during the event.
The live stream widget does have a FB App that goes along with it, but do see any app statistics that seem to connect to users posting ...
I'm doing a facebook connect integration. I use the facebook php library to get the uid,like
$facebook = new Facebook($api_key, $secret);
$fb_user = $facebook->require_login();
$fbuser is a 16-character long bigint, such as 1000002949493949
However, when I insert this value into mysql it only inserts 2949493949
So later when I try to...
I am trying to display my 3 most recent status updates from facebook in my website. I've seen this article (http://www.hongkiat.com/blog/how-to-display-facebook-statuses-on-wordpress-blog/) on displaying the facebook feed in wordpress however my site is just a regular website using html/css. If anyone can shed some light on this that wou...
i have a php based fb app. everything is running fine, but I am unable to publish stories into the user's feed. i am attaching some code for better understanding...
EDIT: The problem is I am unable to show any fbml/xfbml dialog. I can retrieve information from facebook but the fbml/xfbml just doesnt show up. Even the profile pic is not ...
I would like to give my Facebook application users the ability to alter their profile picture with some predefined edits. How can this be accomplished?
...
Hi there,
I'm Verifying the signature just like this: http://wiki.developers.facebook.com/ind … _Signature
but there's something wrong:
when creating md5 from concatenated string (cookies: expires, session_key, ss, user) plus application secret ... i'm getting different results as it follows:
Example:
cookie with signature value: 093...
I am trying to put Facebook connect button on the site and once connected display connected username. But for some reason following code goes into some infinite loop during first connection, and then works fine unless I delete this app from my facebook profile which causes freezing again.
Here is a code on FB connect button click:
FB....
What happens if I miss facebook's callback, because my app is down, or had an error or something?
Will facebook retry later?
...
I want to run multiple facebook applications from a Django project
project\
settings.py
fbapp1\ 'needs FACEBOOK_API_KEY=KEY1
fbapp2\ 'needs FACEBOOK_API_KEY=KEY2
For Facebook authentication and APIs to work pyfacebook middleware uses conf.settings to get the FACEBOOK_API_KEY for each request and adds a Facebook object to each re...
I found out two possible solutions for implementing the database structure for social networking sites like Facebook.
1.: Creating a 'Relationships' table and inserting every friendship into it. For example: user A adds B as friend (A-B), then the logic puts (A-B) and (B-A) into the 'Relationships' table. Then it indexes the first attri...