facebook

Simplest Facebook JavaScript streamPublish example?

This program should prompt the user to update their stream; instead it does nothing but print "splendid!" on the console. What am I missing here? The documentation seems to suggest that this is all it takes. (I've hidden my API key with Xs; normally I'd use a real key.) <html><head></head> <body> <script src="http://static.ak.connect...

facebook application: how to put html code like 'a href' inside news feed content? (After the newest api update)

After the newest Facebook update for publishing news feed, it seems that it doesn't support html code (like a href) inside the new feed content anymore But I still see feeds with click-able link inside the content, how to do that? below are the images of the feeds that have link inside the feed content ...

Post message on facebook wall from iPhone

Hi, I want to post some message on Facebook wall. I am able to login and connect with Facebook from iPhone. But i have hard luck to finding out the solution. Can you please tell me how i can achieve this functionality? Thanks, Jim. ...

Facebook and twitter API

Hello friends, I am developping an ANDROID smùall application. It will just handle connecting et and managing one facebook and twitter account. How this can be done on ANdroid plateform ? Can someone show me a ressource wich can help me Thank you GUYS ...

HipHop PHP (was Hyper PHP by Facebook)

Following this rather comical interview with a Facebook "employee"... Does anybody have any details on the Hyper PHP that those smart as balls Facebook guys have developed? ...

Facebook share cache

Good morning all! I'm developing the Facebook Share button feature on a site, but i'm having the following problem: Imagine that i have an article that i want to share with the id=1 when i shared it, by doing: <a name="fb_share" type="icon_link" share_url="http://www.something.com/en/news.xhtml?id=1"/&gt; all went good. Now, i tried...

Update facebook status with C#

Hi all, My desktop application should update my facebook status. Is there an API that allows to update the status with a login and pwd ? Thanks in advance for your answer ...

php string error

i am experiencing some weird behaviour here. i am using the following code to reference the facebook api. $query = "SELECT msg, user_id, comment_time FROM comments WHERE aid = '$aid' ORDER BY comment_time DESC"; $result = mysql_query($query) or die("ERROR: $query.".mysql_error()); if (mysql_num_rows($result) > 0) { ...

how to use FB.Connect.StreamPublish

from the scarcely documented FB api, I have thus far learned that I need to do the following to get the StreamPublish working: I am making an iframe app setup xd_receiver.htm. DONE. put the FeatureLoader.js.php at the top of the body tag. DONE. configure the api key and xd_receiver.htm. DONE. configure the connect callback URL. NOT D...

Google App Engine won't recognize facebook package unless I rename it

I'm trying to intergrate Facebook Connect into an GAE app. I've got a basic folder structure like so: /gae-root /myapp /templates /etc app.yaml settings.py and I tried to add the PyFacebook library like so: /gae-root /myapp /templates /etc /facebook /djangofb app.yaml ...

Facebook sharing feature on seam

Good morning all. I'm developing a web application, using Seam. I have the following problem: I have my site with Locale set to "en". I'm trying to share a specific page: ../pt/news.xhtml?id=8 The first portion of this url (/pt/) "tells" the webserver that the article displayed on news.xhtml page with id=8 must be in portuguese. To do...

Embed Facebook Wall Inside a Website Like Twitter

Hello everyone, I was wondering if you can point to any demo/example of an embedded Facebook wall like you might see for Twitter. I would like to add the Facebook updates to a section in my webpage. Your input is kindly appreciated! Thank you. Teixeira ...

Creating facebook events via cron-job

I am trying to create facebook events via cron-job. The events should be created on behalf of users of my facebook-connect-site, who have granted offline-access. I have session_keys that do not expire, but can't get it to work! Creating events on behalf of my app works like a charm, is just not what I want... var_dump($event) with some...

How do I post to a user's wall through a facebook iframe app?

I have a simple iframe facebook app. I need the app to post content to the current user's wall. I'm doing everything in PHP and JS. Currently, the only facebook-specific PHP I have is to get the current user's ID, and the only JS I have is to get the iframe to size to the contents. How do I have a dialogue pop up with predetermined co...

Silverlight + Facebook DTK API -> SecurityException ONLY on Mac and Firefox...

I have a SilverLight application which throws a security exception when running on FireFox for Macs. The exact same application works fine on Windows (Internet Explorer, FireFox, Chrome, Opera) and on Safari for Macs. I am using the Facebook Developer Toolkit available on Codeplex. The exception is thrown when the user launches the App...

How do I get the counter for facebook share button to show all the time?

I have a twitter share button and a facebook share button in my blog page. The twitter counter always shows, but the facebook one only shows when you post something, and then goes away when the page is refreshed and does not show up again until something is posted. I want it to show all the time as to adhere to design cohesiveness. ...

How do I detect if a Facebook connect session hasn't expired from PHP/the server?

For my application I need to know if a Facebook Connect session is valid from the server side. The Javascript API lets you know if you are connected to Facebook or not, but it seems that this can't be done from the PHP client library. The scenario where I need it is similar to the following: Log in to The Run Around using Facebook c...

Facebook Policies: Can my application automatically post stories to my Facebook stream?

According to the Facebook Platform Policies: You must not pre-fill the user_message parameter or content sent via an extended permission (such as a status update or note), unless the user generated the content earlier in the workflow. Does that mean that I can't publish stories to the stream automatically, even if the use...

Facebook Application Tab URL

I have a facebook application that can be added to fan pages as a tab. The application requires that users are authenticated in order to use it. This can be accomplished by using requirelogin=1 in a link which is visible only to users who have NOT added the application. This part works fine. However, after the user has given my applicat...

Python class that inherits from itself? How does this work?

Relatively new to Python, and I saw the following construct in the PyFacebook library (source here: http://github.com/sciyoshi/pyfacebook/blob/master/facebook/init.py#L660). I'm curious what this does because it appears to be a class that inherits from itself. class AuthProxy(AuthProxy): """Special proxy for facebook.auth.""" ...