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? ...
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? ...
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...
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...
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...
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 ...
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...
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 ...
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 ...
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...
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...
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....
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? ...
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? ...
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...
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? 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...
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...
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! ...