facebook-application

how to add "face book like button" in my android application

Hi to All, how to add like button in android application. when user click on like button if the user logged in, it should automatically publish the feeds in to all friends who are added in his face book account i create like button to get the from developer.face book and got source in html code and java script code.how to add this code...

Timeframe for Iframe support on Facebook fan pages

Currently Facebook does not allow developers to use iframes on Fan Page Tabs: "The one exception: if you absolutely must create an application that appears as a tab on a Facebook Page, you will need to use FBML for now; tabs do not currently support iframes directly. We will be transitioning tabs to iframes later this year -- please see...

Why does our implementation of the Facebook Like button only post a URL on a user's Facebook profile?

We thought we added the proper tags to enable Facebook to display our Likes in plain english, such as: Bob likes Why We Sold TechCrunch To AOL, And Where We Go From Here on TechCrunch However, Facebook is only posting: Bob likes http://techcrunch.com/2010/09/28... Some guidance would be greatly appreciated. Thanks for your expertise...

Publish to current users wall?

I wrote a small Facebook Ap[p in PHP and would like to be able to post a message to the current user's Facebook wall. The app is set to use FBML. How would I do this? ...

adding facebook application as tabs

I have developed an Facebook canvas page and i want to use that application as a tag on a fan page owned by me. That can be done easily. My doubt is that how do i make it sure that only i am able to add my application as a tab and not anyone else. I mean the method by which i would add the application as a tab on my profile page anyone...

how to post a feed item in friend's wall via graph api (PHP)

Hi I am making a gift application, very simple one on facebook. The main problem here is how to notify the user which don't use the application about the fact that his friend send him a gift????? As the Notifications are disabled on old REST api and stream.publish will not work on the friends , who didn't authorize to post on their wall...

How to get friend list in array on fan page tab facebook

Can I get all the friends's id and their name of a user in an array on a facebook fan page application? when i use FQL it show cant redeclare the facebook class. Thanks in advance ...

Facebook Graph API : Publish to offline user, with user Facebook ID and access_token

Hi All, I'm using PHP/MySQL, and I want to publish for some offline users, I have already both permissions for publish_stream and offline_access, how to publish with the Graph API to this user wall, I already stored users ID's and access_token in my Database. how to do that ?? the current code is not working for me, the php file stop ...

facebook request permission

I want to get publish_stream permission when my facebook app installing check this link it has a picture of requesting permission i want to add that too so how to do that http://developers.facebook.com/docs/guides/upgrade#permissions ...

require_login("publish_stream") doesn't working now ....

because of this issue i cannot ask permission from user i want to publish a messgage to wall and news feed so how to do it using PHP here is my code $appapikey = "XXXXXXXXX"; $appsecret = "XXXXXXXXX"; $facebook = new Facebook($appapikey, $appsecret); $user_id = $facebook->require_login("publish_stream,offline_access"); ?> ...

undefined method Facebook::call_method() need help publishing on facebook wall

Hi. I am following the tutorial here First I have a iframe like this: <iframe src ="http://www.facebook.com/login.php?api_key=XXXXXXXXXXX&amp;connect_display=popup&amp;v=1.0&amp;next=http://www.facebook.com/connect/login_success.html&amp;cancel_url=http://www.facebook.com/connect/login_failure.html&amp;fbconnect=true&amp;return_sessio...

Facebook iframe not working in IE; session/login issue?

I have an issue with my Facebook canvas iframe application. I'm using sessions to build a simple questionnaire-style application. There's a question on each page, when the form is submitted the answer is stored in a session array, and the page number is incremented by one, which then displays the next question. Simple stuff. This app, ...

Creating Facebook App

Im new to facebook applications. I recently created a webapp that consisted of html & php. But recently Ive decided that integrating my webapp within facebook would be useful. Any tips on where to start? Ive looked over developers.facebook.com and im confused. It appears they are in the process of updating. Ive come across a few guides b...

Facebook Graph API and friend's email

Hello. There are some question on the StackOverflow about facebook & email, but after reading them I still have a problem with retrieving users emails. Our app implemented on Flex and uses REST API. And previously it used notifications.sendEmail. App has publish_stream and email permissions (checked with users.hasAppPermission). I trie...

Facebook app question

Hi, Recently I just finished a simple Facebook Air application, and some of my friends already using that for testing purpose. The situation is like this: There are 10 users that currently authorized my application and used it, from those 10 users, my FB account only related to 5 of them (the other 5 are not directly registered as my f...

Is there anything out there that will make it easy for me to allow my users to share their Facebook photos (and videos) on my site?

I see a bunch of .NET open source projects out there that look to be able to get at the users information, but I just want a user to be able to "post" media that's already on Facebook on my site as well. Other websites seem to allow you to do embedding of their media (I'm really liking oEmbed) but FB seems a bit of a mystery to me. I h...

Losing Facebook context parameters when redirecting

I'm moving my client's facebook application over to an iframe, as suggested by facebook. Except, I seem to be losing facebook's provided "context" (userid, etc) when I perform an internal redirect. Am I missing something trivial here? Pulling my hair out over here and googling isn't helping. I'm really hoping I don't have to use js to r...

What good and up to date Facebook API tutorials are available?

I invested quite some time searching for good and up to date tutorials on using the Facebook API. I can't seem to find anything. Even the Facebook developer documentation doesn't contain good examples. What good tutorials are available? I'm particularly interested in creating feed posts via the Facebook API. ...

How to get FB.api('/me/feed', 'post', ... to work?

I've tried to use FB.api to post something to my feed for hours now. I can't get it to work for me. I gave the permissions to the app. I can post to my feed with the PHP SDK but I have to use JavaScript. <button onclick="doPost()">Post to Stream</button> <script> window.doPost = function() { FB.api( '/me/feed', 'post', { ...

How to get permission ?

I have create a simple facebook application. Now I want to get permission for read_stream. I have read a lot of documentation but I don't understand. Could you tell me how to get this permission with PHP or javascript ? Edit: I have used this source code ( you can se it working here ) but doesn't work because I get only basic permiss...