facebook

Facebook Single Sign On - Dealing with invalid fbs_token cookies

I have an app that successfully uses Facebook's single sign on to log a user in. Once a user is logged in I use the cookie that the Facebook javascript creates to get at the access_token which I of course use for subsequent requests. I am having an issue though when the user separately visits facebook.com and logs out on their side, the...

Create gmail, facebook and twitter account through API?

Is it possible to create gmail, facebook and twitter account through API? ...

iPhone/iPad - Facebook api for universal app

I know that facebook api works on iphone. I want to port my iphone app which has facebook api to Universal app so that it works on iPad as well. How can I achieve it? Is there any facebook api for universal apps or do I've to use two api's one for iphone and one for ipad. If I've to use them separately, how can I compile and build my app...

Facebook Graph API for non-English searh terms

when I try to search non-English search-terms like https://graph.facebook.com/search?q=手机&type=post 手机 = mobile phone I only got 12 posts about it. I think the real amount of recent posts in Facebook talking about this term should definitely be much more than 12. Is this because there are really not many people using non-English c...

[Facebook Flash Graph API]How to get PID from the POST result.

I am using Graph API to upload photo to the facebook via flash application. I am able to upload it but what I am trying to do is to get pid of the photo I have uploaded. Facebook.api('/me/photos', handleUploadComplete, values,'POST'); This is the code that im using and once 'POST' is done, I know that it returns results to 'handleUplo...

Facebook Oauth 2.0 and rate limiting

Hello, I am trying to extract Facebook ids from a list of emails using the url: let url = "https://graph.facebook.com/search? q="+email.Replace("@","%40")+"&type=user&access_token=" + facebook.Token After around 600 id extracts I get the error "The remote server returned an error: (400) Bad Request.". Is the facebook API/Search ...

Get id of facebook user from email ASP

How would I get the userid of somebodys facebook from there email address :) Thanks ...

accessing my photos on facebook

Hi ..in our office facebook is blocked, when i recieved an email that i was tagged in a photo i cant wait to see it. what i had in my email is link like this: http://www.facebook.com/n/?profile.php&v=wall&id=100000171142602&story_fbid=104278042970694&mid=3258d59G5af325e3ab2bG75a963G52&n_m=my-email-here Is there a wa...

Facebook post link to wall - image is missing when it's fetched with script

Hi! :) I'm using following code using FB Javascript API to post link to wall: FB.ui({ method: 'stream.publish', message: 'message text', target_id: null, // friend id to post to; if null, posts to own wall attachment: { name: 'applcation name', href: 'http://whatever.com', description: 'descripti...

cURL issues with HTTPS and Facebook Graph API

I'm trying to connect to Facebook's graph api using the PHP-SDK. The session is being created fine, however I'm getting the following error Fatal error: Uncaught CurlException: 1: Protocol https not supported or disabled in libcurl thrown in .../app/vendors/facebook/graph/facebook.php on line 622 I have tried to correct this by addin...

Facebook browser

I was thinking how to write a program which can log me to Facebook and collect the latest status updates of my friends to a linked list. Can this be done for example by PHP or Python without learning Facebook api or do I need to learn that first? ...

Uploading Photos from Hard Drive to Facebook using the API

Hi, wondering if anyone can help me. I've been searching for a few days for help on how to publish photos to Facebook using the API. I came across the following script that seems to work for everyone however I am unsure how to connect this to a form where users can select the photo from their hard drive and upload it. Can anyone point me...

Facebook open graph meta tags & valid html

According to facebook to use their like button and the open graph meta tags you need to place something like this into your html page. <meta property="og:title" content="The Rock"/> <meta property="og:type" content="movie"/> <meta property="og:url" content="http://www.imdb.com/title/tt0117500/"/&gt; <meta property="og:image" content="ht...

multi-friend-selector does not show up on internet explorer

Hi! I have just developed a facebook application. Most of it works fine but the multi-friend-selector does not show up on internet explorer. Although Firefox and Google Chrome working fine it does not appear on IE. Also there is not any error messages. Here is my code for multi-friend-selector: <?php // Prepare the invit...

Invite Facebook friends on a website - is it possible?

Is it possible to display a Facebook friend invitation form on a website (not Facebook embedded app), where a user can select some friends, then we can send them some kind of notification or message with a custom link? I've found a related question at http://stackoverflow.com/questions/2276115/how-to-invite-friends-from-facebook-from-my...

Facebook Changes Page URL but does not actually change page

I was on Facebook and realised that when I change page the page address changes but the page does not redirect but loads via ajax instead. You can tell because the console does not clear when you click the link but the URL changes. Weird, but anyone know how it is done? ...

Detect fb_share javascript button click

Hi, Is it possible to detect when the share button is clicked in the pop windows when using fb_share ? I used the new SDK and got it working using the response but I cannot seem to get it working when using the simple share button. ...

Does someone knows if Facebook liberated their photo uploader (open source)?

I've heard that Facebook used an (open source?) solution for the photo uploader... and that they liberated the code some time ago... Anyone knows something about that or where to find it? Thanks! ...

How do you programmatically publish to the Facebook feed associated with a 'liked' page?

When you 'like' a page of a web site and you have the right meta tags, Facebook will essentially create a FB Page for that liked page. This gives you a way to update all fans of that page. To do it, you have to be listed as the admin of that page. It's all explained rather well here: http://goo.gl/zKM7 Now, the question: suppose I don't...

Order Facebook friends by mutual_friends count ?

Is there a way to get the friends with which you have the more friends in common using Facebook API ? ...