This came up for me today and I wanted to share a solution for anyone else with this problem. This is a bit of a hack but as we all know working inside facebook is like that sometimes.
I have an application that lives in an iframe and inside that main iframe I have another iframe. I wanted to add a 'cancel' button to a fb request form t...
hi,
I am new to iphone development.I have created facebook application and i have displayed the login page and publish page. now i want to share my content(title and summary) display dynamically.
i dont know how to give the contents dynamically,
Here my code and display statically, it will published.
but i want to give my contents d...
Hi guys,
the basic idea is, I created a application of which users will become fans and get the latest and greatest events from.
For that I will need to post a event to the wall page of the application itself.
Creating a event is not a problem (I'm using PHP5):
$event_id=$facebook->api_client->events_create(json_encode($FB));
But ...
hi all,
how to import the fbconnect-android.zip in to my project in eclipse.
thanks.
...
hi all,
i am doing facebook app in my project.
i followed this step the sample app in this link.
http://code.google.com/p/fbconnect-android/downloads/list
now i got this exception in my Logcat.
02-20 22:02:29.020: INFO/ActivityManager(58): Starting activity: Intent { cmp=com.example.brown/.Brown_FaceBook }
02-20 22:02:29.409: ERROR/...
Hi,
I want to know if is there any library or alternate available for the facebook Scribe project for ASP.NET.
Here is the link for the scribe project.
http://developers.facebook.com/scribe/
Thanks
...
I am facing an error with my web app that uses Facebook connect that occurs when the user has both my web app open and Facebook.com open and logs out of Facebook.com. Since my app and the Facebook Connect library is unaware that the session is no longer valid, when it tries to user certain Facebook Connect functions that require a valid ...
With Facebook now supporting XMPP, would it be possible to implement a simple chat bot, perhaps through an app (i.e. conversations not coming from an individual).
...
I found this question http://stackoverflow.com/questions/454051/good-resources-on-facebook-programming, but it haven't solved my problem.
I'm new to facebook development, and also new to PHP & Javascript (Facebook Apps use these languages, yes? I have some experience in C#/.NET, it would be great if I can use them). I need some "basic" ...
Hi!
If i have uid of user is there any way to fetch the user list of this user?
i tried "SELECT uid2 FROM friend WHERE uid1=UID" but this return permission error.
My purpose is to find out if me and given user has mutual friends of second, third etc. degree.
thank you.
Any help will be appreciated
...
Hello i have a small app on facebook called typepractice (url) and im trying to do a highscore system. I store the score in a scores object and save its id and user id in users object, like this:
// setting score
$scoreID = $facebook->api_client->data_createObject("scores", array("score" => 100) );
$userID = $facebook->api_client->data_...
My app generates a message and I'd like to post that message to the wall of the person using the app. I'd like to have the app icon there too if possible.
I've looked and I just end up finding stuff about FBJS but can't figure out for the life of me how to use it.
This is a canvas app by the way and I'm using PHP for server side.
...
am pulling my hair over this :(
spent 10 hrs but nothing came out
I read this thread
http://forum.developers.facebook.com/viewtopic.php?pid=198128
but it didn't help much.
I'm running a local dev App Engine server ( localhost:8080 )
iframe app
so I have a couple of problems.
1) on safari 4.0.4, the publish story dialog comes up nice...
My init line:
<script type="text/javascript">function initFB(){FB_RequireFeatures(["XFBML"], function(){FB.init("xxxx", "xd_receiver.htm");});}</script>
My logout link:
<a onclick="FB.Connect.logoutAndRedirect('account/logout');">Log Out</a>
I have a valid session in my webapp, and a valid Facebook session, because my user display ...
It seems to me that since Facebook is removing all application to user notifications(except facebook developed applications) that the application economy is going to become stagnate.
How does it make sense to make all application to user communication be through proxy email or through a games dashboard that people have to bookmark your ...
I am developing a facebook application using php5. I am using dreamweaver as the editor. I want to test the application. I have a test account. But, now, how do I test the application using that test account? Do I need to submit my application prior to testing?
...
Hi,
Im developoing an app for the iPhone where users can chat using their facebook account info.
in this case: the facebook username & profile image. my question is How can I share the users profile picture in the chat box so that people can see each others avatars?
the pictures must be online somewhere? how to get to that url?
I sho...
Hi there, below is my FB api call in PHP5, which successfully publishes my feed to the App's Wall and the user's news feed.
$facebook->api_client->stream_publish($message, $attachment, $action_links, APP_ID, $facebook_uid);
I'd like to know if there's a way to publish the same feed to the app's wall, user's news feed AND user's own wa...
Hi, here's my scenario.
The editors on my news site can publish articles that are written by authors (who don't have permissions to publish stories on their own). So when the articles get published to FB, they are published under the FB profiles of the editors instead.
Does Facebook API allow stream publishing as someone else other than...