facebook

facebook fbjs script dosent work with runat="server" attribute

hi, I am trying making facebook application with asp.net. My script code dosent run with form runat="server" attribute. I check with firebug and I am getting this error : XXX_form is null. my code : <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <script> function displayError(title, me...

Facebook Policy File error

By now, I'm really sick and tired of facebook's crossdomain.xml , finally got it working for loading pictures from the server. Now I need to load variables from my app using flash. I'm getting this error. Error: [strict] Ignoring policy file at http://apps.facebook.com/crossdomain.xml due to incorrect syntax. See http://www.adobe.com...

flash builder (flex 4): how can i add facebook-actionscript-api to my project

Hi. I'd like to write a program using the facebook-actionscript-api. The google code's website of facebook api shows that it provides .swc files for flex 3.4 or the sources. how can I add them to my Flash Builder project ? Do I need to compile the sources ? How can I use the swc file in my project ? any information regarding this sub...

update facebook status using flex

Want to find out if facebook status can be updated through flex or air. ...

Publish Feed Story Using Facebook API

Hi, I want to publish information to user's wall from iphone application. I am using the Facebook SDK for iphone. I found in the documentation that I should use FBStreamDialog but this loads a form to the user and s/he write the story to be published, I don't want this behavior. I want to publish user actions at my application and user ...

flex 4 and facebook-actionscript-api : cannot login

Hi. I wrote a simple application for facebook and it seems that i fail to login. I created a test application on facebook and i test my application by going to apps.facebook.com/ i have the following function that is being executed after ApplicationComplete event of my main application. private function initFacebook():void { ...

Is it possible to have a 'background' Facebook App?

I need a Facebook application that kind of sit in the 'background' of user operations. Once the app is installed by the user, it will keep on sending the user's status updates, new friend connections etc to another web app of mine. It will keep on getting info no matter whether the app page is open or not. My question is -- is this poss...

Post to Facebook via Flex

Is there a way to post to a users Facebook wall via fbConnect? (php/as3) I can authenticate and pull info but not post anything. I have searched extensively and not found a working example or docs on how to post directly via AS3. My current work around is to external link to an Ajax page. blah. J~ ...

Retrieving information from facebook and giving it to flash

Hi, The problem always comes down to this, I have a policy file on my server which lets my flash to do what it wants and I retrieve that data. But most of the information one needs in an facebook app is from facebook. My setup is Django/Python with flash. So when I call a url like http://apps.facebook.com/... it gives me a security er...

Best way to build a Facebook App with Flash ?

Hi, I learnt it the hard way, the python/django/javascript/flash was not such a good idea when building a facebook app. So what in your opinion is the best combination to use when building a Flash based facebook app? ...

Facebook multi_friend_selector Invite by Email options

I've got a facebook iframe application that uses standard facebook multi_friend_selector.php page to invite friends into the application. Both invite friends and invite via email options are enabled. 1) Invite by Id. When a user select one of his friends (by id) and sends a request, a facebook request with the link to the special page o...

PyFacebook Infinite Session

I am trying to set a cron task to read updates for a Facebook application. I have prompted the user to grant Offline Access permissions and i have store the session_key in the db. I am crearing a new Facebook object and besides api and secret key I also use the session_key (previously stored in db) and the fb uid. When i am trying to cr...

Using Facebook connect inside an IFrame (Not an Iframe inside facebook)

Hello, I'm trying to use Facebook connect in an IFrame. It seems that after the user finishes authenticating and granting my app permissions the Facebook cookies aren't saved on the browser. This is the scenario: 1) The user presses the connect button inside my Iframe. 2) The user is authenticate with FB Connect. 3) User grants perm...

Can someone take a look at my short javascript code and see why Facebook Connect is not working?

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"&gt;&lt;/script&gt; <script type="text/javascript"> function isLoggedIn(){ $('#fb_dash_anon').hide(); $('#fb_dash_loggedin').show(); } function isNotLoggedIn(){ $('#fb_dash_loggedin').hide(); $('#fb_dash_an...

How do I get the "Interests" of a facebook user uing Facebook Connect? (I'm using Django/python and pyFacebook middleware)

def index(request): fbdata = [] if request.facebook.check_session(request): fbdata = request.facebook.users.getInfo(request.facebook.uid, ['name', 'pic']) print fbdata This works! I am able to get the user's picture and name. However...I'd like to get the interests of that user. How can I do that? By the way, I i...

I Don't Need a Facebook App, I just want their API (in Ruby)...

Can I use Facebooker without having to create a whole Facebook App in their Developer section? I don't need to create a Facebook App with Facebooker, I just want to be able to create events and posts on Facebook with my own custom admin panel on my site. Facebooker seems to have everything built already, so I wouldn't want to use just ...

Facebook Flash Application background color doesn't show up

How to make the flash background color show up? I tried swfbgcolor doesn't work... ...

Facebook Dashboard API.... fail to use it :|

This question is about Dashboard.addNews and Dashboard.publishActivity Facebook has told the public about its new Dashboard API, however it hasn't provided any updates on its library to use the new code. So I followed the advice in this link http://forum.developers.facebook.com/viewtopic.php?pid=197753 to add the new functions to the ...

How would you handle facebook session expiration?

I am a ASP.NET developer using Facebook Developer Toolkit to develop a facebook flash application with flash developer. When the user plays the game for a certain period of time, there are chances that the facebook session expires and I can't call any Facebook API for processing as a result. What should I do for this problem? ...

Retrieve news feed using facebook API

Hi I have been looking for hours but cannot find the API call that retrieves a user's news feed (i.e the thing that you see at http://www.facebook.com/home.php). I think this should be something extremely easy. What did I miss? I would prefer an answer with FQL, but other API methods will be just fine, as I think I can translate between ...