According to http://github.com/facebook/python-sdk/blob/master/src/facebook.py , In my canvas application, i can do the following call to get my access_token, which will work because my user has used facebook to login:
import facebook
myDict = facebook.get_user_from_cookie(cookies, app_id, app_secret)
# my access_token is myDict["acce...
Hi everybody,
how can i load a working iframe app (tested via http://apps.facebook.com/my-app-name) into an application tab on the profile page of my own fanpage. I got the tab, but didn't see anything in the tab. first time i called the tab i got a couple of errors. But now I just see nothing. In sourcecode some css definitions are inc...
Hi Guys,
I'm trying to use xfbml within my facebook app (iframe) but it somehow doesn't show up.
I copied this tag into one of the pages...
<fb:share-button href="http://apps.facebook.com/example" type="box_count"></fb:share-button>
..but as i said it doesn't show up.
Any idea how that works?
Thanks in advance!
...
Hello everyone, i am writing an FBML app on facebook hosted in GAE. Facebook will talk to your hosted app only vai POST (im sure this is the cause, but please do correct me if i'm wrong). So im faced with the issue that inside of my POST method, i need to redirect to facebook OAuth authroize URL. But i can only send a GET request. How ca...
Hi Guys,
I'm developing my first facebook app on kohana 2.3.x at the moment and I noticed that a usual app url should look like this:
http://apps.facebook.com/{my_app}/{controller}/{method}
But in my app it shows the real url.
http://mydomain.com/{controller}/{method}
Any idea how to fix that in Kohana?
Thanks in advance!
...
Hello everyone,I am a new facebook application deverloper.
I followed this tutorial:http://www.adobe.com/devnet/facebook/articles/video_facebook_quick_start.html
but I have one question is that,the tutor mentioned "Facebook Library downloaded from the GoogleCode page",I searched through the Facebook Developer Pages,but couldn't find suc...
Hi Guys,
I am new to facebook application development.My question is:do I have to have a server to make the development?Could I do it on my own local machine and try it out?
Thanks for your advice.
...
Hello;
I am about to start a new project, a facebook app.
There are two alternatives for client-side in my mind.
Write Flex-Facebook app. Or write html with Ajax and Jquery.
So what are your opinion, which do you recommend?
What are the issues about each to take into account?
Advantages, disadvantages, subjective opinion?
Thank you h...
is it possible to return Facebook Application Description & Logo/Image just like we can return Application Name using
<fb:application-name />
...
I am working on a website that allows people to upload photos to their facebook account (as if the user manually uploaded those photos to facebook), and the uploaded photos will be hosted on facebook instead of my server. Should I develop a facebook application or use facebook connect?
...
I am using this in my .php file and I want to pass the user's photo variable into a .swf file.
<?php
require_once 'src/facebook.php';
$facebook = new Facebook(array(
'appId' => 'xxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxx',
'cookie' => true,
));
$me = null;
if ($session) {
try {
$uid = $facebook->getUser();
$me = $facebook-...
Hi
Does anyone know what's the replacement method for FB.CanvasClient.startTimerToSizeToContent() to resize iframe content in the new javascript SDK for Facebook?
Or maybe if there is an alternative technique for achieving the same effect?
Thanks
...
Hi All
I am Integrating Face book application with Our Website.
My Website is in Java's [Google Web Toolkit] Framework 2.0.1
When we press FB-connect connect then FB's Login window comes, after that user enters
email & pwd.
When user clicks FB's connect button then Our website display in that Login window.
Authentication and ...
I want to use FBML as a canvas and would like to display a rich text editor like fckeditor or other. Can anybody out there help me out on this? e.g. to format text mainly bold,italics. Is it possible? how? I'm eager to learn more from the responder.
...
Does anyone know how I would include a facbeook "like button" in an iphone app. I tried calling the iframe inside of a uiwebview but that doesn't work.
thanx
...
I have an FBML rendered application that uses the multi-friend-selector to send invitation to friends.
Is it possible to count how many invitations each user send to his/her friends?
...
I'm having some trouble with switching to the new JS API for a number of things with creating applications within FB, specifically the "Tab".
<!--
function do_perm()
{
Facebook.showPermissionDialog('publish_stream,email,offline_access', null);
}
//-->
This no longer works for me when called via an onclick command. Also, with the ...
Hi there,
I'm new to Facebook's Graph API / FBML / etc. So if at any point in my post I make a mistake or wrong assumption, please point them out.
One of the projects that I am working on has a need to get data/info from an existing web site in addition to the friends list and such that FB can provide. This is for a platform that allow...
When Facebook drives traffic to an app, they often append &ref=whatever to the query string. This is useful for figuring out which integration points are working or not. I've figured out what some of these mean. For example:
ref=bookmarks - the user clicked on a bookmark.
ref=game_my_recent - the user clicked on the upper portion of th...
I'm working on an iframe-based canvas application and have run into a major roadblock in finding a good way to keep track of the Facebook session when navigating between pages within the iframe. On the first page load, the Facebook page passes all the necessary fb_sig parameters to your callback URL via the query string. On subsequent pa...