Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

Índice

Índice
outlinetrue
stylenone
exclude.*ndice

Objective

This document is intended for developers who want to create applications external to Fluig. Fluig has a public API and its main services are available on the platform. By using this API, you can create messages on behalf of the user, add contacts as favorites, create articles and much more. For the applications to act on behalf of the user the authorization is performed through the OAuth protocol.

API

API(Application Programming Interface) is a set of routines and standards set by the software so that external applications can use its resources in their applications. 

In Fluig, the API documentation is available at http://<FluigServer>/api or here.

All services are based on REST, where writing actions are limited to HTTP POST request type, and query actions are limited to GET. 

Nota
titleObservation

Available from Fluig 1.1version

OAuth

Authentication and authorization of external applications to Fluig is performed via the protocolOAuth 1.0 and OAuth 1.0a which enables applications to perform actions on behalf of the user without storing their login information (username/password). You can also use the Fluig API through a valid session in the internet browser.

Image Added

Nota
titleObservation

Fluig is not compatible with the OAuth 2.0 protocol.


 

Authentication process:

For an application to act in Fluig on behalf of a user or of itself it has to be previously registered on the Fluig platform with its public and private keys. As soon as the application is registered in Fluig it is possible to start the authentication process as steps below:

  •  Step 1: Application requests a token from Fluig to start an OAuth session (http://<ServerFluig>/portal/api/rest/oauth/request_token)
  •  Step 2: Application requests user authorization through login and password (http://<ServerFluig>/portal/api/rest/oauth/authorize)
  •  Step 3: Application requests Fluig tokens to act on behalf of the user (http://<ServerFluig>/portal/api/rest/oauth/access_token) 

 

Image Added
Figure 1 - OAuth example

 

Nota
titleObservação

To use the application, it must be previously registered in Fluig.

Register application in Fluig

To register an application in Fluig log in as Fluig administrator.

Follow the steps:

Deck of Cards
effectDuration0.5
idsamples
historyfalse
effectTypefade
Card
defaulttrue
id1
labelStep 1

 

  • Go to: Control panel/WCM/ProviderOauth

Image Added

Figure 2 - Fluig administrative panel

 

 

Card
id2
labelStep 2

 

  • Click Add and fill in the fields as shown:

    Image Added

    Figure 3 - Oauth provider registration 

    Details:

     

    Field
    Example
    Code01
    OAuth ProviderWCM
    DescriptionExample application
    Access token URL

    http://<ServerFluig>/portal/api/rest/oauth/access_token


    Request token URL

    http://<ServerFluig>/portal/api/rest/oauth/request_token 


    User authorization URL http://<ServerFluig>/portal/api/rest/oauth/authorize
    Request methodGET
    Signature methodHMAC-SHA1


 

Card
id3
labelStep 3

 

  • Go back to the control panel and go to: Control panel/WCM/Oauth app

    Click Add and fill in the fields as shown:


Image Added

Figure 4 – Oauth application registration 

Details:

Fields
Example
 Consumer key

<your application public key>

OAuth Provider

Provider registered in step 2

Consumer secret<your application secret key>


Card
id4
labelStep 4

 

  • Optional: If your application performs actions on its behalf, you can create a user application. On the same application registration screen there is an "Application user" action: after accessing it, you will be able to generate tokens that are exclusive for the application. If your application's actions should be executed on behalf of a user, then the application must go through the standard OAuth authentication process.

Image Added

Figure 5 - application user

Example application

There is an application developed by the Fluig team that shows how to use the API. The application is developed in Java. You have to have JDK 1.7 installed before running the application. Build and dependencies management is made by Maven, so it is mandatory to have it installed in the development environment to be used.

fluig-client-demo.zip

Download the file and unzip it into a directory of your choice.

The project basically consists of a pom.xml (Project Object Model, Maven standard file) and a Java class called  FluigClientExample . Open the class and check the documentation generated from comments. You will see that it is necessary to build an object  FluigClient and this object receives some parameters such as host, consumer key and consumer secret. You should change the values in the construction to a known host and enter the consumer key and secret of the application that is your responsibility, as the code that follows:

Bloco de código
languagejava
		FluigClient fluig = new FluigClient()
				.setHost ("http://127.0.0.1:8080")
				.setConsumerKey ("enter your consumer key here")
				.setConsumerKey ("enter your consumer secret here")
				.connect();

Further down in the code, note that the application creates and reads posts by communities. You have to enter a valid community of your environment to run the demo application;

Bloco de código
languagejava
String comunidadeAlias = "coloque_aqui_alias_de_alguma_comunidade";

After performing the changes, open the directory generated and you will notice that the pom.xml file is located in the root of the project.

To perform the build of the project, type:

Bloco de código
languagebash
$ mvn clean install

During the build process, Maven will display several logs, such as dependencies being downloaded among others.

After build is successfully finished, note that the file target/api-client-demo-jar-with-dependencies.jar generated is an executable Java. To execute it, type the command:

Bloco de código
languagebash
$ 
HTML
<div id="main-content" class="wiki-content group">
	<h1 id="FluigAPI-Índice">Index</h1>
	<p>
		<style type='text/css'>/*<![CDATA[*/
div.rbtoc1412695590834 {
	padding: 0px;
}
div.rbtoc1412695590834 ul {
	list-style: none;
	margin-left: 0px;
}
div.rbtoc1412695590834 li {
	margin-left: 0px;
	padding-left: 0px;
}
/*]]>*/
</style>
	<div class='toc-macro rbtoc1412695590834'>
		<ul class='toc-indentation'>
			<li><span class='TOCOutline'>1</span> <a
				href='#FluigAPI-Objetivo'>Objective</a>
				<ul class='toc-indentation'>
					<li><span class='TOCOutline'>1.1</span> <a
						href='#FluigAPI-OAuth'>OAuth</a></li>
					<li><span class='TOCOutline'>1.2</span> <a
						href='#FluigAPI-CadastraraplicativonoFluig'>Register
							application on Fluig</a></li>
					<li><span class='TOCOutline'>1.3</span> <a
						href='#FluigAPI-AplicaçãodeExemplo'>Example application</a></li>
				</ul></li>
		</ul>
	</div>
	</p>
	<h1 id="FluigAPI-Objetivo">Objective</h1>
	<p>This document is intended for developers who want to create
		applications external to Fluig. Fluig has a public API and its main
		services are available on the platform. By using this API, you can
		create messages on behalf of the user, add contacts as favorites,
		create articles and much more. For the applications to act on behalf
		of the user the authorization is performed through the OAuth protocol.</p>
	<p>
		<span
			style="color: rgb(0, 0, 0); font-size: 1.8em; font-weight: bold; line-height: normal;">API</span>
	</p>
	<p>
		<span style="color: rgb(34, 34, 34);">API</span><em><span
			style="color: rgb(34, 34, 34);">(Application Programming
				Interface)</span></em><span style="color: rgb(34, 34, 34);"> is a set of
			routines and standards set by the software so that external
			applications can use its resources in their applications.</span><span
			style="color: rgb(34, 34, 34); font-size: 10.0pt; line-height: 13.0pt;">&#160;</span>
	</p>
	<p>
		<span style="color: rgb(34, 34, 34);">In Fluig, the API
			documentation is available at</span><span style="color: rgb(34, 34, 34);">
			http://&lt;FluigServer>/api </span><span style="color: rgb(34, 34, 34);">or
		</span><a href="http://api.fluig.com" class="external-link" rel="nofollow"><span
			style="color: rgb(17, 85, 204); text-decoration: underline;">here</span></a><span
			style="color: rgb(34, 34, 34);">.</span>
	</p>
	<p>
		<span style="color: rgb(34, 34, 34);">All services are based on
			<strong>REST</strong>, where writing actions are limited to HTTP
		</span><strong><span style="color: rgb(34, 34, 34);">POST</span></strong><span
			style="color: rgb(34, 34, 34);"> request type, and query
			actions are limited to </span><strong><span
			style="color: rgb(34, 34, 34);"> GET.</span></strong><strong
			style="font-size: 10.0pt; line-height: 13.0pt;"><span
			style="color: rgb(34, 34, 34);">&#160;</span></strong>
	</p>
	<div class="aui-message warning shadowed information-macro">
		<p class="title">Note:</p>
		<span class="aui-icon icon-warning">Icon</span>
		<div class="message-content">
			<p>
				<span style="color: rgb(38, 38, 38);">Available from Fluig <strong>1.1</strong>version
				</span>
			</p>
		</div>
	</div>
	<h3 id="FluigAPI-OAuth">OAuth</h3>
	<p>
		<span style="color: rgb(34, 34, 34);">Authentication and
			authorization of external applications to Fluig is performed via
			the&#160;protocol</span><span
			style="color: rgb(17, 85, 204); text-decoration: underline;"><a
			href="http://oauth.net/core/1.0a/" class="external-link"
			rel="nofollow">OAuth</a>&#160;1.0</span> and&#160;<a
			href="http://oauth.net/core/1.0a/" class="external-link"
			rel="nofollow">OAuth 1.0a</a>&#160;<span
			style="color: rgb(34, 34, 34);">,&#160;</span><span
			style="color: rgb(34, 34, 34);">which enables applications to
			perform actions on behalf of the user without storing their login
			information (username/password). You can also use the Fluig API
			through a valid session in the internet browser</span><span
			style="color: rgb(34, 34, 34);">.</span>
	</p>
	<p>
		<span style="color: rgb(34, 34, 34);"><img
			class="confluence-embedded-image confluence-external-resource image-right"
			width="100"
			src="https://lh6.googleusercontent.com/zeput87tfEe0mreaYKPTHyVDF4yVDBYMO1B2L3TtAncTWFNLv5iE59ulRMx58uW619aSkxQddzwtfEQgNFh0wmjSnXUjveCqS7YanKfTZjsV9ej8YPByeXbY"
			data-image-src="https://lh6.googleusercontent.com/zeput87tfEe0mreaYKPTHyVDF4yVDBYMO1B2L3TtAncTWFNLv5iE59ulRMx58uW619aSkxQddzwtfEQgNFh0wmjSnXUjveCqS7YanKfTZjsV9ej8YPByeXbY"></span>
	</p>
	<div class="aui-message warning shadowed information-macro">
		<p class="title">Note:</p>
		<span class="aui-icon icon-warning">Icon</span>
		<div class="message-content">
			<p>
				<span style="color: rgb(34, 34, 34);">Fluig is <strong>not</strong>
					compatible with the OAuth 2.0 protocol.
				</span>
			</p>
			<div>
				<span style="color: rgb(34, 34, 34);"><br /></span>
			</div>
		</div>
	</div>
	<p>&#160;</p>
	<p>
		<span style="color: rgb(0, 0, 0);">Authentication process:</span>
	</p>
	<p>
		<span style="color: rgb(0, 0, 0);">For an application to act in
			Fluig on behalf of a user or of itself it has to be previously
			registered on the Fluig platform with its public and private keys. As
			soon as the application is registered in Fluig it is possible to
			start the authentication process as steps below:</span>
	</p>
	<ul>
		<li><span style="color: rgb(0, 0, 0);">&#160;<strong>Step
					1:&#160;</strong>Application requests a token from Fluig to start an OAuth
				session (<em><span style="color: rgb(34, 34, 34);">http://&lt;ServerFluig>/portal/api/rest/oauth/request_token</span></em>)
		</span></li>
		<li><span style="color: rgb(0, 0, 0);">&#160;<strong>Step
					2:&#160;</strong>Application requests user authorization through login and
				password (<em><span style="color: rgb(34, 34, 34);">http://&lt;ServerFluig>/portal/api/rest/oauth/authorize</span></em>)
		</span></li>
		<li><span style="color: rgb(0, 0, 0);">&#160;<strong>Step
					3:&#160;</strong>Application requests Fluig<strong>&#160;</strong>tokens to
				act on behalf of the user (<em><span
					style="color: rgb(34, 34, 34);">http://&lt;ServerFluig>/portal/api/rest/oauth/access_token</span></em>)<strong>&#160;</strong></span></li>
	</ul>
	<p>
		<span style="color: rgb(34, 34, 34);"><span><span
				style="color: rgb(0, 0, 0);">&#160;</span></span></span>
	</p>
	<div>
		<img class="confluence-embedded-image image-center" width="500"
			src="attachments/89621623/96010289.png"
			data-image-src="attachments/89621623/96010289.png">
	</div>
	<div style="text-align: center;">
		<strong>Figure 1 - OAuth example</strong>
	</div>
	<p>&#160;</p>
	<div class="aui-message warning shadowed information-macro">
		<p class="title">Note:</p>
		<span class="aui-icon icon-warning">Icon</span>
		<div class="message-content">
			<p>
				<span style="color: rgb(34, 34, 34);">To use the application,
					it must be previously registered in Fluig.</span>
			</p>
		</div>
	</div>
	<h3 id="FluigAPI-CadastraraplicativonoFluig">Register application
		in Fluig</h3>
	<p>
		<span><span style="color: rgb(34, 34, 34);">To register
				an application in Fluig log in as Fluig administrator.</span></span>
	</p>
	<p>Follow the steps:</p>
	<a name="composition-deck-samples"></a>
	<div id="samples" class="deck" history="false" loopcards="false"
		effecttype="fade" effectduration="0.5" nextafter="0.0">
		<ul class="tab-navigation"></ul>
		<!-- // .tab-navigation -->
		<div class="deck-cards panel" style="">
			<div id="1" class="deck-card  active-pane" style="" cssclass=""
				accesskey="" label="Passo1" title="" nextafter="0"
				effecttype="default" effectduration="-1.0">
				<p>&#160;</p>
				<ul>
					<li><p>
							<span><span style="color: rgb(34, 34, 34);">Go to:
							</span><em><span style="color: rgb(34, 34, 34);">Control
										panel/WCM/ProviderOauth</span></em></span>
						</p></li>
				</ul>
				<p style="text-align: center;">
					<span><img
						class="confluence-embedded-image confluence-external-resource confluence-content-image-border"
						width="500"
						src="https://lh6.googleusercontent.com/z6GEysJ7DEkocYEgAZqjaMPfKYHXK1Xhaa_NI7GmQxxbQO-1twl9ciZiEkdM5YW3PeeMQy2mf08AZivip93TY6SvE1CLt4zlSaMAGqBIaFVoAOqHeDbXKVFi"
						data-image-src="https://lh6.googleusercontent.com/z6GEysJ7DEkocYEgAZqjaMPfKYHXK1Xhaa_NI7GmQxxbQO-1twl9ciZiEkdM5YW3PeeMQy2mf08AZivip93TY6SvE1CLt4zlSaMAGqBIaFVoAOqHeDbXKVFi"></span>
				</p>
				<p style="text-align: center;">
					<strong><strong style="text-align: center;">Figure
							2 - </strong>Fluig administrative panel</strong>
				</p>
				<p>&#160;</p>
				<p style="text-align: center;">&#160;</p>
			</div>
			<div id="2" class="deck-card " style="" cssclass="" accesskey=""
				label="Passo 2" title="" nextafter="0" effecttype="default"
				effectduration="-1.0">
				<p>&#160;</p>
				<div>
					<ul>
						<li><p>
								<span><span style="color: rgb(34, 34, 34);">Click
										Add and fill in the fields as shown:</span></span>
							</p>
							<p>
								<span><img
									class="confluence-embedded-image confluence-external-resource confluence-content-image-border image-center"
									width="500"
									src="https://lh6.googleusercontent.com/shwMGB8-EPw0aQ6Mu2qdV_cWViaZ8u-mANysKLdS1fZoM0RYmxp7PefmPVHOneTS5u90NWqc41Ugmx-PATVSJGuDeVNTKXrx9-VSE9x_yVwNLNjMAK8mGnud"
									data-image-src="https://lh6.googleusercontent.com/shwMGB8-EPw0aQ6Mu2qdV_cWViaZ8u-mANysKLdS1fZoM0RYmxp7PefmPVHOneTS5u90NWqc41Ugmx-PATVSJGuDeVNTKXrx9-VSE9x_yVwNLNjMAK8mGnud"></span>
							</p>
							<p style="text-align: center;">
								<span style="color: rgb(34, 34, 34);"><strong>Figure
										3 - Oauth provider registration</strong>&#160;</span>
							</p>
							<p>
								<span style="color: rgb(34, 34, 34);">Details:</span>
							</p>
							<div class="table-wrap">
								<table class="confluenceTable">
									<tbody>
										<tr>
											<th class="confluenceTh">Field</th>
											<th class="confluenceTh">Example</th>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Code</span></td>
											<td class="confluenceTd">01</td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">OAuth Provider</span></td>
											<td class="confluenceTd">WCM</td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Description</span></td>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Example application</span></td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Access token URL</span></td>
											<td class="confluenceTd"><p>
													<span style="color: rgb(34, 34, 34);">http://&lt;ServerFluig>/portal/api/rest/oauth/access_token</span>
												</p>
												<div>
													<span style="color: rgb(34, 34, 34);"><br /></span>
												</div></td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Request token URL</span></td>
											<td class="confluenceTd"><p>
													<span style="color: rgb(34, 34, 34);">http://&lt;ServerFluig>/portal/api/rest/oauth/request_token</span><span
														style="color: rgb(43, 43, 43);">&#160;</span>
												</p>
												<div>
													<span style="color: rgb(34, 34, 34);"><br /></span>
												</div></td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">User authorization
													URL</span></td>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">&#160;</span><span
												style="color: rgb(34, 34, 34);">http://&lt;ServerFluig>/portal/api/rest/oauth/authorize</span></td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Request method</span></td>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">GET</span></td>
										</tr>
										<tr>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">Signature method</span></td>
											<td class="confluenceTd"><span
												style="color: rgb(43, 43, 43);">HMAC-SHA1 </span></td>
										</tr>
									</tbody>
								</table>
							</div>
							<p>
								<span style="color: rgb(34, 34, 34);"><br /></span>
							</p></li>
					</ul>
					<p style="text-align: center;">&#160;</p>
				</div>
			</div>
			<div id="3" class="deck-card " style="" cssclass="" accesskey=""
				label="Passo 3" title="" nextafter="0" effecttype="default"
				effectduration="-1.0">
				<p>&#160;</p>
				<ul>
					<li><p>
							<span style="color: rgb(43, 43, 43);">Go back to the
								control panel and go to: </span><span style="color: rgb(34, 34, 34);">Control
								panel/WCM/Oauth app</span>
						</p>
						<p>
							<span
								style="color: rgb(34, 34, 34); font-size: 10.0pt; line-height: 13.0pt;">Click
								Add and fill in the fields as shown:</span>
						</p>
						<div>
							<span style="color: rgb(34, 34, 34);"><br /></span>
						</div></li>
				</ul>
				<p>
					<span><img
						class="confluence-embedded-image confluence-external-resource confluence-content-image-border image-center"
						width="500"
						src="https://lh4.googleusercontent.com/m4MpHxaK702g0JL25AhI32CQwmg6oTjjtE451r-FRr2u3S4atPjPTHrwks3COKnt65bq3wOVKPMF3_kOmhlLYmtsSIOXB8gXRO6iV9SSJtoLVofNnqyheGTq"
						data-image-src="https://lh4.googleusercontent.com/m4MpHxaK702g0JL25AhI32CQwmg6oTjjtE451r-FRr2u3S4atPjPTHrwks3COKnt65bq3wOVKPMF3_kOmhlLYmtsSIOXB8gXRO6iV9SSJtoLVofNnqyheGTq"></span>
				</p>
				<p style="text-align: center;">
					<strong style="text-align: center;">Figure 4 – Oauth
						application registration</strong><span style="color: rgb(34, 34, 34);">&#160;</span>
				</p>
				<p style="text-align: left;">
					<span style="color: rgb(34, 34, 34);">Details:</span>
				</p>
				<div class="table-wrap">
					<table class="confluenceTable">
						<tbody>
							<tr>
								<th class="confluenceTh">Fields</th>
								<th class="confluenceTh">Example</th>
							</tr>
							<tr>
								<td class="confluenceTd"><span><span
										style="color: rgb(34, 34, 34);">&#160;</span><span
										style="color: rgb(43, 43, 43);">Consumer key</span></span></td>
								<td class="confluenceTd"><p>
										<span style="color: rgb(43, 43, 43);">&lt;your
											application public key></span>
									</p></td>
							</tr>
							<tr>
								<td class="confluenceTd"><span><span
										style="color: rgb(43, 43, 43);">OAuth Provider</span></span></td>
								<td class="confluenceTd"><p>
										<span style="color: rgb(43, 43, 43);">Provider
											registered in step 2</span>
									</p></td>
							</tr>
							<tr>
								<td class="confluenceTd"><span><span
										style="color: rgb(43, 43, 43);">Consumer secret</span></span></td>
								<td class="confluenceTd"><span><span
										style="color: rgb(43, 43, 43);">&lt;your application
											secret key></span></span></td>
							</tr>
						</tbody>
					</table>
				</div>
				<p style="text-align: center;">
					<strong><br /></strong>
				</p>
			</div>
			<div id="4" class="deck-card " style="" cssclass="" accesskey=""
				label="Passo 4" title="" nextafter="0" effecttype="default"
				effectduration="-1.0">
				<p>&#160;</p>
				<ul>
					<li><span><span style="color: rgb(43, 43, 43);">Optional:
								If your application performs actions on its behalf, you can
								create a user application. On the same application registration
								screen there is an "</span><span style="color: rgb(43, 43, 43);">Application
								user</span><span style="color: rgb(43, 43, 43);">" action: after
								accessing it, you will be able to generate </span><span
							style="color: rgb(43, 43, 43);"> tokens</span><span
							style="color: rgb(43, 43, 43);"> that are exclusive for
								the application. If your application's actions should be
								executed on behalf of a user, then the application must go
								through the standard OAuth authentication process.</span></span></li>
				</ul>
				<p>
					<span><img
						class="confluence-embedded-image confluence-external-resource image-center"
						width="500"
						src="https://lh4.googleusercontent.com/abCZrBXOGOQ02j1HunoZF2RKzemoUKTqqvDyrQsy5_T18BiuAyhx9irIclzNkGjBPeWEnJ_KHL58vQ9XWf3vN6tpzS0ZYOaaZtdf6W_XKmr_o93EA567v1u9"
						data-image-src="https://lh4.googleusercontent.com/abCZrBXOGOQ02j1HunoZF2RKzemoUKTqqvDyrQsy5_T18BiuAyhx9irIclzNkGjBPeWEnJ_KHL58vQ9XWf3vN6tpzS0ZYOaaZtdf6W_XKmr_o93EA567v1u9"></span>
				</p>
				<p style="text-align: center;">
					<span><strong style="text-align: center;">Figure 5
							- application user</strong></span>
				</p>
			</div>
		</div>
	</div>
	<!-- // .deck -->
	<h3 id="FluigAPI-AplicaçãodeExemplo">Example application</h3>
	<p>There is an application developed by the Fluig team that shows
		how to use the API. The application is developed in Java. You have to
		have JDK 1.7 installed before running the application. Build and
		dependencies management is made by Maven, so it is mandatory to have
		it installed in the development environment to be used.</p>
	<p>
		<a href="attachments/89621623/90570761.zip">fluig-client-demo.zip</a>
	</p>
	<p>Download the file and unzip it into a directory of your choice.</p>
	<p>
		The project basically consists of a pom.xml (<em>Project Object
			Model</em>, Maven standard file) and a Java class called&#160;
		<code>
			<strong>FluigClientExample</strong>
		</code>
		. Open the class and check the documentation generated from comments.
		You will see that it is necessary to build an object&#160;
		<code>
			<strong>FluigClient</strong>
		</code>
		and this object receives some parameters such as host, consumer key
		and consumer secret.&#160;<span
			style="font-size: 10.0pt; line-height: 13.0pt;">You should
			change the values in the construction to a known host and enter the
			consumer key and secret of the application that is your
			responsibility, as the code that follows:</span>
	</p>
	<div class="code panel pdl" style="border-width: 1px;">
		<div class="codeContent panelContent pdl">
			<pre class="theme: Confluence; brush: java; gutter: false"
				style="font-size: 12px;">		FluigClient fluig = new FluigClient()
				.setHost ("http://127.0.0.1:8080")
				.setConsumerKey ("enter your consumer key here")
				.setConsumerKey ("enter your consumer secret here")
				.connect();</pre>
		</div>
	</div>
	<p>
		<span style="font-size: 10.0pt; line-height: 13.0pt;">Further
			down in the code, note that the application creates and reads posts
			by communities. You have to enter a valid community of your
			environment to run the demo application;</span>
	</p>
	<div class="code panel pdl" style="border-width: 1px;">
		<div class="codeContent panelContent pdl">
			<pre class="theme: Confluence; brush: java; gutter: false"
				style="font-size: 12px;">String communityAlias = "enter_here_alias_of_some_community";</pre>
		</div>
	</div>
	<p>
		<span style="font-size: 10.0pt; line-height: 13.0pt;">After
			performing the changes, open the directory generated and you will
			notice that the pom.xml file is located in the root of the project.</span>
	</p>
	<p>To perform the build of the project, type:</p>
	<div class="code panel pdl" style="border-width: 1px;">
		<div class="codeContent panelContent pdl">
			<pre class="theme: Confluence; brush: bash; gutter: false"
				style="font-size: 12px;">$ mvn clean install</pre>
		</div>
	</div>
	<p>During the build process, Maven will display several logs, such
		as dependencies being downloaded among others.</p>
	<p>
		After build is successfully finished, note that the file
		<code>
			<strong>target/api-client-demo-jar-with-dependencies.jar</strong>
		</code>
		generated is an executable Java. To execute it, type the command:
	</p>
	<div class="code panel pdl" style="border-width: 1px;">
		<div class="codeContent panelContent pdl">
			<pre class="theme: Confluence; brush: bash; gutter: false"
				style="font-size: 12px;">$ java -jar target/api-client-demo-jar-with-dependencies.jar</pre>
		</div>
	</div>
	<p>
		In
		<code>
			<strong>FluigClientExample</strong>
		</code>
		class, note that the execution will: list the users, create a post on
		the user's personal page, create a post in a community and list the
		posts of a community. During the execution, the call result logs will
		be displayed on the console.
	</p>
	<p>&#160;</p>
	<p>&#160;</p>
</div>


jar

In FluigClientExample class, note that the execution will: list the users, create a post on the user's personal page, create a post in a community and list the posts of a community. During the execution, the call result logs will be displayed on the console.