Steps to integrate facebook with Java

Facebook Java Integration

Facebook Java Integration

Oorsig: Social media like facebook, linked-in, twitter are become popular for web marketing. The exposure to social media has a tremendous impact on different fields of marketing, promotion etc. In this article we will discuss facebook integration with java application.








Inleiding: Websites are become an integral part of any business, be it small, medium or big. The web presence is an important aspect to reach the global audience. But only the website is not sufficient to reach the mass audience. For that the social media revolution is very important and it has a cascading effect. Now the social networking sites are also interested to get integrated with other websites as they also need to reach the mass audience. And in the similar way websites need the help of social sites to reach target audience. So, to complement this social sites have exposed their APIs and allows the websites to communicate with them. Facebook provides convenient Graph API to integrate with their site. The Graph API is very powerful and exposes all necessary features required.

The following picture shows the facebook integration with different types of medium like web, mobile, desktop and many other devices.

Facebook integration cycle

Image1: Facebook integration cycle

Facebook aansoek model: Now we need to understand the facebook application model to understanding the integration part. The proxy server model used by facebook is the main integration point with the application. Facebook uses REST web services to open its platform to the developers. Developers are free to use APIs to integrate facebook features in their application. And the most important thing is that the developers get the freedom to select any technology to develop their application. So the application development platform can be anything and facebook APIs are there to support it. And the developer should deploy their application in a way so that it can handle huge volume of data everyday.

Working steps in facebook proxy model: Following are the steps used in facebook proxy model

1) Your web application will reside in your web/application server and you will register the base URL in facebook account

2) When your application is visited in facebook, it will call your registered URL on your server

3) Now, your application will call necessary facebook APIs to get information

4) Your application will use its own database data and facebook data and render it

5) After this facebook returns your application’s output to the user








Steps to create facebook account: Before we start integrating our application with facebook APIs, we need to register our application (website) in facebook. Once you register your web application in facebook, access will be provided to the APIs. Please follow the steps below to register your application.

  • Create your website which will be using facebook APIs
  • Create facebook account and register your application there. Here it will be the website name.
  • After this facebook will generate a client id and secret key for the registered web application.
  • Use callback URL during registration. Facebook will use this URL to redirect the response message

Hoe om Facebook biblioteke kry:

Voordat ons Facebook te integreer met ons Java aansoek wat ons nodig het 'n paar derdepartybiblioteke. These libraries will help us communicate with facebook. Different groups of independent java developers have made efficient facebook libraries for integration purpose.

Jy kan kyk http://code.google.com/p/facebook-java-api/ to get details. These libraries are compatible with Java SE 5 en bo.

Download the following JARS

  • http://facebook-java-api.googlecode.com/files/facebook-java-api-1.7.2.jar
  • http://facebook-java-api.googlecode.com/files/json-1.0.jar
  • http://facebook-java-api.googlecode.com/files/facebook-util-1.7.2.jar

As jy met behulp van Java aansoek bediener op die top van Java SE 5, then you need to download the following JARs

  • http://facebook-java-api.googlecode.com/files/jaxb-api-2.1.jar
  • http://facebook-java-api.googlecode.com/files/jaxb-impl-2.1.jar
  • http://facebook-java-api.googlecode.com/files/jsr173-api-1.0.jar

You do not need the above three JARs if you are using Java SE 6 of later.

Na die aflaai van hierdie pype, you need to incorporate them in your application. These JARs will provide you API access for different purpose.








Following sample code shows the integration part.

Listing1: Sample showing integration of facebook API and java

[kode]

package techalpine.com;

invoer java.io.BufferedWriter;

invoer java.io.File;

invoer java.io.FileWriter;

invoer java.io.IOException;

import net.sf.json.JSONArray;

invoer net.sf.json.JSONObject;

invoer facebook4j.Facebook;

invoer facebook4j.FacebookException;

invoer facebook4j.FacebookFactory;

invoer facebook4j.Post;

invoer facebook4j.ResponseList;

invoer facebook4j.conf.Configuration;

invoer facebook4j.conf.ConfigurationBuilder;

public class FacebookImpl {

openbare statiese nietig hoof(String[] argumente) gooi FacebookException

{

// Make the configuration builder

ConfigurationBuilder confBuilder = new ConfigurationBuilder();

confBuilder.setDebugEnabled(ware);

// Set application id, secret key and access token

confBuilder.setOAuthAppId(“8282887”);

confBuilder.setOAuthAppSecret(“c3jhdhjhuh”);

confBuilder.setOAuthAccessToken(“2jskjdbjbdjb”);

// Set permission

confBuilder.setOAuthPermissions(“email,publish_stream, id, naam, eerste naam, van, generiese”);

confBuilder.setUseSSL(ware);

confBuilder.setJSONStoreEnabled(ware);

// Create configuration object

Configuration configuration = confBuilder.build();

// Create facebook instance

FacebookFactory VF = nuwe FacebookFactory(opset);

Sluit aan by Facebook = ff.getInstance();

probeer {

// Get facebook posts

String resultate = getFacebookPostes(Facebook);

String responce = stringToJson(resultate);

// Create file and write to the file

Lêer = nuwe lêer(“C:\\Facebook\\File\\test.txt”);

indien (!file.exists())

{

file.createNewFile();

FileWriter FW = nuwe FileWriter(file.getAbsoluteFile());

BufferedWriter BW = nuwe BufferedWriter(FW);

bw.write(resultate);

bw.close();

System.out.println(“Writing complete”);

}

} vang (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

openbare statiese String getFacebookPostes(Sluit aan by Facebook) gooi FacebookException {

// Get posts for a particular search

ResponseList<Post> results = facebook.getPosts(“Reebok”);

return results.toString();

}

openbare statiese String stringToJson(string data)

{

// Create JSON object

JSONObject JSONObject = JSONObject.fromObject(data);

JSONArray message = (JSONArray) jsonObject.get(“message”);

System.out.println(“Boodskap : “+message);

return “Done”;

}

}

[/kode]

Facebook Markup Language (FBML): Apart from using facebook REST web service there are another option available to the developers. Facebook Markup Language (FBML) is another powerful offering from facebook community to support application development. Using this markup language developer can easily integrate their application without putting much effort.








Following is a sample code

Listing2: Sample code showing FBML

[kode]

<%@ page language=”java”

contentType=”text/html; charset=UTF-8″

pageEncoding=”UTF-8″

%>

<strong>Myfacebook test page/strong>

<div>

<fb:profile-pic uid=”logged_in_user”

size=”medium”

linked=”ware” /><br>

<fb:name uid=”logged_in_user”

use_you=”false”

linked=”ware”

capitalize=”ware” />,

Use the most popular facebook apps

</div>

[/kode]

Apart from FBML, there are other utilities available for Ajax like effects. There is facebook query language (FBQL) which can be used for searching. All these can be used together and it will help us to make a complex application as per our requirement.

Gevolgtrekking: There are many social networking websites available but facebook is most popular. And we have also seen that there are many different applications built on top of facebook APIs. There are also third party libraries available which can be used by java applications to interact with facebook. So ons bespreking sluit, we can say that social media integration is a new dimension in developer’s world and we should explore it as much as possible.

 

============================================= ============================================== Buy best TechAlpine Books on Amazon
============================================== ---------------------------------------------------------------- electrician ct chestnutelectric
error

Enjoy this blog? Please spread the word :)

Follow by Email
LinkedIn
LinkedIn
Share