facebook

How far back in time can you go with the Facebook API?

With the Facebook API are only recent things (wall posts, friends status updates etc) obtainable or is everything ever associated with the user's account obtainable? ...

How can I specifiy what access I need from my user's Facebook accounts when using OmniAuth?

When you use OmniAuth to login to a web app through Facebook, these are the permissions the webapp has: Access my basic information Includes name, profile picture, gender, networks, user ID, list of friends, and any other information I've shared with everyone. Send me email WebApp may email me directly at [email protected] Access my da...

Facebook FQL stream limit?

I want to get the full history of my wall. But I seem to hit a limit somewhere back in June. I do multiple calls like this: SELECT created_time,message FROM stream WHERE source_id=MY_USER_ID LIMIT 50 SELECT created_time,message FROM stream WHERE source_id=MY_USER_ID LIMIT 51,100 and so on... But I always end up on the same last (fir...

Facebook real-time user updates

When using the Facebook real-time callbacks to update user settings/details, are you able to access a users details even without a never ending token? Realistically, we don't want to have to ask users for offline access, but still want to be able to update their details in our system. Is it possible to do this, or do you have to require...

PHP: Problem with constant/pagetitle and facebook like-button

Hello everyone I'm using constants to display my page titles in different languages: // lang.en.php define(_PAGE_TITLE, "Pagetitle"); // lang.de.php define(_PAGE_TITLE, "Seitentitel"); I've placed a facebook like button on that page and everything works except for one thing: If I submit the link using the like button, the title ...

facebook page javascript: can't reuse function

I am making a custom page in facebook, using FBML and JavaScript on a canvas tab. I want to make a slider like you usually do with jQuery, unfortunately facebook has no jQuery support (yet), so I figured I will make the slide with plain old JavaScript. After using the slide() function once, I get "slide() is not a function" error in fi...

Read Facebook private messages from bash terminal?

I'm a long-timed Mutt user. Is there a way to read, delete and reply to Facebook private messages in mutt-like style, from a bash Ubuntu/Debian terminal? Thanks ...

Mysql structure for something like Facebook

I'm thinking of starting a facebook style website with bio pages, friend requests etc, roughly what sort of database tables would be advisable? Ie. Users, status? A rough list would help? Thanks ...

Dynamic User Directorys

When a user registers I am wondering how to create them a dynamic directory (which will show they're profile), such as Facebook / MySpace. I want the directory to be that of their username. The username is stored on the database. Technologies being used Database: MySQL Front End: PHP I've looked at using the PHP MKDIR command to cre...

Need an easy example of actionscript 3 and facebook API integration

Hello guys, im programmer in PHP, AS2, AS3 and others, i want to develop a flash application for facebook, i know a litle bit about how to start with the API configuration and that kind of thinks, i know how to integrate PHP scripts with flash (but in AS2). So, i cant find a good (and simple) example of an app made in flash (AS3) who in...

customizing facebook like-box

hi fellow web developer, I would like to customize the design of my facebook like-box. ive already search the net and follow all the instructions, here's the link ive tried but its seems obsolete: http://www.daddydesign.com/wordpress/how-to-customize-your-facebook-fan-box/ there are lots of tutorial in web, but have the same solution....

Facebook Permissions

I'm developing an app for a fan page. How can I post something from the app to the fan page wall? What permissions do I need to ask from the user? ...

Using Facebook as single signon

I am developing an mvc.net application and would like to use Facebook Connect as single signon, but do I need to create a Facebook application from within their interface, or can I use the login features without creating an application? ...

Return list of current Facebook user's friends PHP

I am working on a Facebook app that will allows users to vote on their favorite pictures, based on their friend's profiles pictures. I know how to display the images, just not how to get the list of the current user's friend's IDs. My application is written in PHP. This is the last thing I need to complete the app. Any help would be grea...

Facebook API class doesn't exist anymore

I am trying to follow this guide to use Facebook on my site: http://www.deviantcoders.com/articles/aspnet-membership-and-role-provider-facebook-connect-part-2 But when I try to use API api = new API(); it can't find the class: The type or namespace name 'API' could not be found (are you missing a using directive or an assembly refere...

Facebook API (Wall) Possible to let Facebook pick an image?

Facebook API (Wall) Possible to let Facebook pick an image? When you like a website you can enter the following URL: http://www.facebook.com/share.php?u=(some url)&t=(some title) you will be brought to a page where a default image is showing and you can even browse through the images on the website to choose another (if available). Thi...

Problem FaceBook application does not publish on the wall

irst clarify that goes wrong on my server connection with FaceBook I can usually write things on the application. To start I decided to make one of phrases, sentences are like 6 random test and works well. I think the problem is that the function to publish on the wall and does not work, if I look at the Firefox Error Console fails. Th...

GET the number of tweets, likes and diggs for any given URL?

Hi, I'm building a simple app that should count the number of tweets, shares/likes and diggs for any given URL. The URL could point to a blogpost, news article, etc. I know that Facebook has this FQL command to retrieve the amount of likes for any given URL: SELECT like_count FROM link_stat WHERE url="any url..."; Thanks! ...