facebook

How can I connect to a Facebook account using the AS3 API and update the status?

How can I connect to a Facebook account using the AS3 API and update the status? Can anyone post an example code of this action? Thanks. ...

Facebook Comments Count

Hello, I am trying to write a Facebook query that will return all comments posted by a user to his friends, however I can't seem to find the correct schema. Its as if there are no 'indexable' fields to build this. Any suggestions please? With thanks, Wineshtain ...

Referencing Other Functions from Name Spaced JavaScript

So I am trying to consolidate a bunch of code into some nice NameSpaced functions, but am having a tough time getting it to all work together. For example, I have this (edited down for clarity): YW.FB = function() { return { init: function(fncSuc, fncFail) { FB.init(APIKey, "/services/fbconnect/xd_receiver.htm...

Facebook Developer ToolKit: How should I construct this app?

I have created a simple desktop application that I want to use to post status updates for the users of my app. Here's the kicker though that I am having trouble figuring out, the desktop application runs as part of a batch process every night, in which I update the status of certain users. I use the following code to accomplish this: (c...

FBJS and Dom Ready

I want to know how can I use $(document).ready or something like that in FBJS for Facebook applications. I tried $(document).ready but it ain't working. Also I couldn't find any associated document... ...

Facebook Connect - Authentication and Security

I would like to develop an external website using Facebook Connect instead of an own login and registration process. First: Please don't answer "See documentation on facebook.com" or so. I've read all pages there several times I think. But I can't find an answer. For my login button I use this code: <fb:login-button v="2" size="large"...

retrieve users information from facebook

i'm a newbie at this and i'm aware of Facebook connect. but is there an API that allows me to accept a user's USERNAME and PASSWORD? I develop with ASP.NET/C# ...

How can I connect and get facebook profile information from a director apps (.dcr not .swf) ?

We currently have a director apps (.dcr not .swf) that we want to integrate with the facebook api. (to connect via facebook, to challenge facebook friend from within the game) Can I embedded a flash in the director apps that take care of connecting to Facebook ? From what I saw from my search it seem that most of the tutorial or answ...

Public stream to facebook's user wall with php ?

I build a facebook app with php api, everything work fine just have a problem when i need public a message on user's Wall. my code bellow $appapikey = "xxxxxx"; $appsecret = "xxxxxx"; $facebook = new Facebook($appapikey, $appsecret); $fb_user = $facebook->require_login(); if (!$facebook->api_client->users_hasAppPermission("publish_str...

Login to facebook in android using REST API

I develop facebook application in android i want to log in to facebook via HTTPClient , teh user give me username and password and then i connect to facebook.com/login i want to make like this code http://stackoverflow.com/questions/1409220/facebook-getting-incorrect-signature-104-when-getting-session-key/1795229#1795229 but in andro...

publishing stream appears with no imags facebook

Hi all, I am building a small facebook application using facebook developer toolkit 3.0 in c#. I had this piece of code that used to work a week ago. From some reason, when I try publishing my feed it appear without an image and without a flash move. Here's my code: string userName = FacebookAPI.Users.GetInfo().name; string message = ...

Facebook Site Linking Support

When someone posts a link to a web site in Facebook, it populates the link preview box with a photo and some text from the site. If someone posts a link to my site in Facebook, it is generally just get the site's domain name and one of the images that appears on the site. No text appears. I would like to be able to control what text a...

How can I find tutorials for building an application that gets updates from an online website?

I want to build an application that gets updates from online websites like Twitter or Facebook. Currently, I haven't even got a clue on how to do this. Also, in certain applications, like Doodle Jump, I have seen updates that pop up. Some other applications have a news section that gets updated often. How is it done? Any tutorial or wo...

facebook chat in silverlight

I have a silverlight application and i want is that my application should ask for the user name and password and the client should be able to start chat with their facebook friends.Could this be done? and if so then is there sample code available ...

Facebook Ajax Example Not Working

Hi, I have created an fbml application. Copied the code available on http://wiki.developers.facebook.com/index.php/FBJS/Examples/Ajax But my code is not working. I am unable to find out the reason for it. When i click on one of the options and check it on firefox firebug console i am getting this error: "a210470316064_do_ajax is no...

get my facebook friends attending to events

hey i want to get from facebook the events that my friends are going to them. for example eventId1 (friend1,friend2,friend3) eventId2 (friend10,friend55); and so on... how can i accomplish it ? thank for replays. ...

Can javascript be used in static FBML under pages' tab?

I want to hover the image in static FBML page. But even the following simple code doesn't work: <div id="button1">button1</div> <div id="button2" onmouseover="document.getElementById('button1').setStyle({display: 'none'})">button2</div> <script type="text/javascript"> document.getElementById('button1').setStyle({display: 'none'})...

PHP: Problems with Facebook Connect authentification

I would like to develop an external website using Facebook Connect instead of an own login and registration process. On the first page (index.php) I have the following code for the login button: <fb:login-button v="2" size="large" autologoutlink="false" onlogin="window.location='/index.php'">Connect with Facebook</fb:login-button> Fo...

Is there a library that emulates facebook's "Link Detect"?

I'm looking to write a library that "parses" information like facebook does when you post a link. However as I don't want to reinvent the wheel does anyone know of a library or and effort to write an Library that does this already? I have included an example so that you can get a grasp of what I mean if you don't use face book. ...

Facebook - Stream.publish

I want to programmatically publish messages to my site user's facebook page on their behalf, whenever certain events are triggered from my site. I'll have a cron that executes stream.publish when needed. I am looking at stream.publish to accomplish this, which requires extended permission from the facebook user. Since the user will not ...