background preloader

FB Development

Facebook Twitter

Social Plugins. Home - Facebook Developers. Facebook. Heroku Toolbelt. Heroku Toolbelt for Windows What is it?

Heroku Toolbelt

Heroku client - CLI tool for creating and managing Heroku apps Foreman - an easy option for running your apps locally Git - revision control and pushing to Heroku. Getting Started with Your Facebook App on Heroku. Facebook Table of Contents A Facebook app typically uses an SDK to interact with the Facebook API, using Facebook’s Graph API and FQL to retrieve and post information to Facebook.

Getting Started with Your Facebook App on Heroku

Fb:name - Développeurs Facebook. GET /me HTTP/1.1Host: graph.facebook.com /* make the API call */ $response = $facebook->api( "/me");/* handle the result */ /* make the API call */ FB.api( "/me", function (response) { if (response && !

fb:name - Développeurs Facebook

Response.error) { /* handle the result */ } }); /* make the API call */[FBRequestConnection startWithGraphPath:@"/me" parameters:nil HTTPMethod:@"GET" completionHandler:^( FBRequestConnection *connection, id result, NSError *error ) { /* handle the result */ }]; /* make the API call */new Request( session, "/me", null, HttpMethod.GET, new Request.Callback() { public void onCompleted(Response response) { /* handle the result */ } }).executeAsync();