Facebook

TwitterFacebook
Get flash to fully experience Pearltrees
http://thinkdiff.net/facebook/graph-api-iframe-base-facebook-application-development-php-sdk-3-0/

Graph API & IFrame Base Facebook Application Development PHP SDK 3.0 | Thinkdiff.net

Facebook recently updated their PHP-SDK to version 3.0 . This is a major change. So I decided to update some of my facebook related tutorials with updated code. At first I want to tell you that, this post is the updated version of my popular post Graph API & IFrame Base Facebook Application Development .
Introduction So you have a great idea for an application, and you've developed your idea into a somewhat functional Facebook app. The only problem is, it looks completely out of place in the space Facebook has designated for your layout. Let's look at how we can change that. Facebook invested a lot of money in creating the fluid graphic design work you see in front of you, but we won't have to. http://devtacular.com/articles/bkonrad/how-to-style-an-application-like-facebook

How to Style an Application Like Facebook - Devtacular

For many, Facebook is the web and the first port of call for socialising, sharing and much more. Its deep-rooted, social eco-system enables users to share their life and experiences, and it should not be overlooked in any digital marketing strategy. Advertisement Many organisations have already established a strong presence on the platform. Increasingly, brand-specific Facebook pages are promoted rather than websites. Recent research by digital consultancy Beyond states that ‘almost a quarter of consumers would prefer to receive information from a brand through Facebook rather than its website’.

Embed your site on Facebook | Tutorial | .net magazine

http://www.netmagazine.com/tutorials/embed-your-site-facebook
Lately, there’s been quite a fuzz about lazy registration . It turns out that the less the user has to think, the higher the conversion rates are! What a thought! http://net.tutsplus.com/tutorials/php/how-to-authenticate-your-users-with-facebook-connect/

How to Authenticate Users With Facebook Connect | Nettuts+

http://stackoverflow.com/questions/1059640/facebook-offline-access-step-by-step 3) copy the "code" parameter from the resulting url's query string, use that in: https://graph.facebook.com/oauth/access_token?client_id=APP_ID&redirect_uri=http://www.facebook.com/connect/login_success.html&client_secret=APP_SECRET&code=CODE_FROM_2 And copy the right hand side of access_token= in the resulting page's text, which will be in the structure of: APP_ID|HEXNUM-USER_ID|WEIRD_KEY 4) now download either from the graph api or the classic rest api using the oath access token you just got ala (where SOURCE_ID is the facebook id for the user/group/whatever that you are looking up): $stream = json_decode ( file_get_contents ( "https://api.facebook.com/method/stream.get?

java - Facebook offline access step-by-step - Stack Overflow

As described in the documentation it’s a fairly easy process — and it does not require any signatures. For example, I have an application with an id 116122545078207 , and I am using the URL of this blog (http://benbiddington.wordpress.com) to collect request tokens. [update, 2010-04-29] If ever there was a lesson to read specification and documentation carefully, this is it. http://benbiddington.wordpress.com/2010/04/23/facebook-graph-api-getting-access-tokens/

Facebook Graph API — getting access tokens « Ben Biddington

http://chaolam.wordpress.com/2010/06/07/implementing-facebook-real-time-updates-api-with-curl-examples/ I recently implemented Facebook’s real-time updates api . Since I couldn’t find a decent tutorial and ran into a few small roadblocks, I thought I’d share what I learnt. This tutorial basically gets real-time updates of any name changes for users of your FB app. I’m going to use examples with Curl – since that’s like the swiss knife of http programming. With access token in hand, you can now query what real-time updates your app is already subscribed to. Real-time updates API is RESTful; so a HTTP Get returns your current subscriptions. e.g.

Implementing Facebook Real-time updates API (with CURL examples) « Chao Lam

PHP SDK & Graph API base Facebook Connect Tutorial | Thinkdiff.net

http://thinkdiff.net/facebook/php-sdk-graph-api-base-facebook-connect-tutorial/ In this article I’m focusing facebook latest php sdk to integrate facebook features in your site. Some days ago facebook released their new graph api system and updated their core structure. They also officially released php sdk so that you can easily call facebook latest graph api and old legacy api from server side by php. Create a file named fbmain.php . And copy below code to this file. '; print_r($o); echo ' '; } // Create our Application instance.

facebook/php-sdk - GitHub

https://github.com/facebook/php-sdk/ We have created a new repository for this project: https://github.com/facebook/facebook-php-sdk . Please update anything you have pointing at this repostory to this location before April 1, 2012. The Facebook Platform is a set of APIs that make your app more social This repository contains the open source PHP SDK that allows you to access Facebook Platform from your PHP app. Except as otherwise noted, the Facebook PHP SDK is licensed under the Apache Licence, Version 2.0 ( http://www.apache.org/licenses/LICENSE-2.0.html ) require 'facebook-php-sdk/src/facebook.php'; $facebook = new Facebook(array( 'appId' => 'YOUR_APP_ID', 'secret' => 'YOUR_APP_SECRET', )); // Get User ID $user = $facebook->getUser();
http://developers.facebook.com/docs/guides/canvas/

Applications sur Facebook.com - Développeurs Facebook

Building an app on Facebook gives you the opportunity to deeply integrate into the core Facebook experience. Your app can integrate with many aspects of Facebook.com, including the News Feed and Notifications. All of the core Facebook Platform technologies, such as Social Plugins , the Graph API and Platform Dialogs are available to Apps on Facebook. If you wish to start building an App on Facebook now, please refer to our getting started tutorial .