facebook

curl simulation for facebook publishing

To publish photos on the Facebook need to perform: curl -F 'access_token=...' \ -F '[email protected]' \ -F 'message=Caption for the photo' \ https://graph.facebook.com/me/photos example from developers.facebook.com/docs/reference/api/photo How to create the same POST request in the iPhone app? ...

Facebook Open Invite Friends Interface

Hello! How can I open the Multi Friend selector from a Flex Application inside a Facebook IFrame please? The interface I am looking for is this: ...

How do I track Facebook Like Button clicks?

I am building a simple website. I am going to put Facebook Like Button on each article page of this website. How can I track how many people Liked this particular article? Does facebook provide an API for that? Clarification I am going to write a script that is going to pull the amount of "likes" for each page every hour. This would al...

how to upload using facebook iphone api to post image and text from iphone

hey guys , Hope you all doing well, i have a one problem i want upload a small image with some text in front of that image from iphone, but not succeeded yet. I gone through some blogs and post but not find any thing like that . Please suggest me some piece of sample code how to do that.. Thanks in Advance ...

How to retrieve facebook user info

Hi, I am using facebook's graph api to retrieve user's information. First I retrieved the access_token. Then, I tried using jquery.getJSON() method to retrieve user's id and name. <div id="result"></div> <script>$.getJSON("https://graph.facebook.com/me/?access_token=111978178853984|2.lg65A3c0atficNsFcf7Rog__.3600.1279922400-100001XX...

Facebook JS SDK Syntax not recognized

I don't know why it's not finding the libraries I loaded for JS: <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head id="Head1" runat="server"> <link href="Content/Styles/Site.css" rel="stylesheet" type="text/css" /> <title></title> <script src="Content/js/jquery-1.3.2.min.js" type="text/javascript"></script...

How to embed a facebook like button on every webpage of my website?

What should I put instead of: http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike in this href field so that it returns the permalink of the webpage. I want to insert the same code in every webpage of the website. <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%2Fpage%2Fto%2Flike&amp;amp;layout=standard&amp;a...

Looking for android Facebook SDK examples...

I've looked all over the internet and can't seem to find what i'm looking for... I'm just trying to find a site with some examples on how to use the OFFICIAL facebook android SDK http://github.com/facebook/facebook-android-sdk To be specific i'd like to see some examples on notification use and simple photo upload. But i'll take anythi...

Accesing facebook data via RSS or JSON is possible?

Hello guys, is any way to access the list of links publicated by my friends on facebook via RSS or Json (or any other standard format) ?? What information from my friends feeds on facebook can be access in standard format? (and how) Thanks! ...

Facebook FQL to get all status messages from an app

I am attempting to get a list of all friend messages posted by the Facebook for Android application. The Facebook for Android application has app_id=350685531728. This returns all friend user ids: SELECT uid2 FROM friend WHERE uid1 = $facebook_user_id This returns all Facebook for Android postings for a user id: SELECT message, app...

Facebook application - Development model

We are building couple of facebook application. Right now we have setup 3 different setup for each application. For example for app1 we will have 1) app1_dev for development 2) app1_test for testing and 3) app1 for live users. All three apps point to different callback urls. Our development team check-in code into SVN and build script ...

How to get Facebook user's friends information using JavaScript SDK

I am using the Facebook JavaScript SDK. I am able to get the user's information using: FB.api('/me', function(response) { .... }); I get the user's friends using: FB.api('/me/friends', function(response) { ... }); //.. it only has two values name and id. I want to get friends Date of birth and location. Is there a FB.api method...

Is 'auth_token' and 'sig' the same thing in facebook api??

Hi there, I am reading facebook api and ran into a little confusion, and hope that you might help. I am using the Javascript SDK specifically, and on getting the request.session back from the login callback, I wonder if the field 'sig' is the same as the 'auth_token'? I know the descriptions of both are different, but I wonder if they ar...

File_get_contents not working?

Hi, I am using cakephp. I am trying get data from facebook using file_get_contents. I get a warning. Warning (2): file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration Warning (2): file_get_contents(https://graph.facebook.com/XXXXXXX/?access_token=111978178XXXXXX|2.lg65A3c...

facebook like page

I am trying to create a business "Like" page for my website something similar to http://www.facebook.com/Cricinfo http://www.facebook.com/google Please let me know. ...

Facebook Login as supplement to existing login?

I am developing a PHP/MySQL e-commerce site with some social aspects, and am looking to integrate it with Facebook. I already have a native user registration/session handling system. I have managed to include the iframe "Social Plugins" such as a "Like" button. But I really would like to offer users the option of registering with the sit...

Facebook wall writing application

I was wondering if i could possible write an app, that could be a list of all my friends and just simply posting a message to their walls on the friends i select. Not a message, a wall post. So it appears that i went to their wall and wrote a message, they have no idea that an app is pushing the message to them. also could it be written...

Is it possible to query for all users posts created by your Facebook application?

We are wanting to create a Facebook application that people can add to their page, and then when they post content from it on their wall, we want to have the ability for our application to periodically query for posts created by use of this application to pull and display back on our website. I've perused the documentation and don't see...

Is an onject id returned when publishing via Facebook GraphAPI?

I am planning an app that will post to a users FB wall. When posting via the GraphAPI is an object id returned for the new post? We want to use the post id later to retrieve data about the post. ...

Why is my Facebook graph session being returned as null

The login button shows up fine I can login and give the app permissions But when the page reload happens (using the javascript sdk) the session value from the facebook object is NULL. I've wasted 4 days on trying to solve this problem...and I have the answer. I'm self posting because nobody should have to suffer through that crap f...