Steps to integrate facebook with Java

Facebook Java Integration

Facebook Java Integration

概觀: 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.








介紹: 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

此搜索: Facebook integration cycle

Facebook應用程序模型: 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) 現在, 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

如何獲得Facebook的圖書館:

之前,我們與我們的Java應用程序中整合Facebook,我們需要一些第三方庫. These libraries will help us communicate with facebook. Different groups of independent java developers have made efficient facebook libraries for integration purpose.

您可以檢查HTTP://code.google.com/p/facebook-java-api/ to get details. These libraries are compatible with Java SE 5 以上.

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

如果您使用的是Java應用程序服務器上的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 或更高版本.

下載這些JAR後, 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.

清單1: Sample showing integration of facebook API and java

[碼]

package techalpine.com;

進口java.io.BufferedWriter;

進口的java.io.File;

進口java.io.FileWriter;

進口java.io.IOException異常;

import net.sf.json.JSONArray;

進口net.sf.json.JSONObject;

進口facebook4j.Facebook;

進口facebook4j.FacebookException;

進口facebook4j.FacebookFactory;

進口facebook4j.Post;

進口facebook4j.ResponseList;

進口facebook4j.conf.Configuration;

進口facebook4j.conf.ConfigurationBuilder;

public class FacebookImpl {

公共靜態無效的主要(串[] 參數) 拋出FacebookException

{

// Make the configuration builder

ConfigurationBuilder confBuilder = new ConfigurationBuilder();

confBuilder.setDebugEnabled(真);

// 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, 名稱, 名字, 姓, 通用”);

confBuilder.setUseSSL(真);

confBuilder.setJSONStoreEnabled(真);

// Create configuration object

Configuration configuration = confBuilder.build();

// Create facebook instance

FacebookFactory FF =新FacebookFactory(組態);

正在使用Facebook = ff.getInstance();

嘗試 {

// Get facebook posts

字符串結果= getFacebookPostes(Facebook的);

String responce = stringToJson(結果);

// Create file and write to the file

檔案文件=新的文件(“Ç:\\Facebook\\File\\test.txt”);

如果 (!文件已存在())

{

file.createNewFile();

FileWriter的FW =新的FileWriter(file.getAbsoluteFile());

BufferedWriter將體重=新的BufferedWriter(FW);

bw.write(結果);

bw.close();

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

}

} 抓 (IOException異常Ë) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

公共靜態字符串getFacebookPostes(正在使用Facebook) 拋出FacebookException {

// Get posts for a particular search

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

return results.toString();

}

公共靜態字符串stringToJson(字符串數據)

{

// Create JSON object

的JSONObject的JSONObject = JSONObject.fromObject(data);

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

System.out.println(“信息 : “+信息);

return “Done”;

}

}

[/碼]

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

[碼]

<%@ 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=”真” /><BR>

<fb:name uid=”logged_in_user”

use_you=”false”

linked=”真”

capitalize=”真” />,

Use the most popular facebook apps

</DIV>

[/碼]

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.

結論: 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. 因此得出結論我們的討論, we can say that social media integration is a new dimension in developer’s world and we should explore it as much as possible.

 

============================================= ============================================== 在亞馬遜上購買最佳技術書籍,en,電工CT Chestnutelectric,en
============================================== ---------------------------------------------------------------- electrician ct chestnutelectric
error

Enjoy this blog? Please spread the word :)

Follow by Email
LinkedIn
LinkedIn
Share