Árvore de páginas

Versões comparadas

Chave

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

...

Informações
titleInterested?

For more details, visit the Plugin do fluig para MS Microsoft Outlook page.

Aviso
titlePlease note:

In order to use the new fluig plugin for MS Outlook, first make sure that the old plugin is uninstalled.

...

Informações
titleLearn more

See the updated method in /social/user/{genericId}.

Dica
titleSamples of Use


Bloco de código
titleRegistration
collapsetrue
function beforeDocumentPublisher()
	{ var FLUIG_HOST ="http://SEU_FLUIG";

	// OAuth variables
	var OAUTH_APP_PUBLIC = "OAUTH_APP_PUBLIC";
	var OAUTH_APP_PRIVATE = "OAUTH_APP_PRIVATE";
	var OAUTH_USER_APP_PUBLIC = "OAUTH_USER_APP_PUBLIC";
	var OAUTH_USER_APP_SECRET = "OAUTH_USER_APP_SECRET";

	//matrícula
	var user = getValue("WKUser");
	var consumer = oauthUtil.getGenericConsumer(OAUTH_APP_PUBLIC, OAUTH_APP_PRIVATE, OAUTH_USER_APP_PUBLIC, AUTH_USER_APP_SECRET);
	var data = consumer.post(FLUIG_HOST+"/api/public/social/user/"+user,jsonString);}
Bloco de código
titleAlias
collapsetrue
function afterSocialLike(companyId, like)
	{ var FLUIG_HOST ="http://SEU_FLUIG";
	
	// OAuth variables
	var OAUTH_APP_PUBLIC = "OAUTH_APP_PUBLIC";
	var OAUTH_APP_PRIVATE = "OAUTH_APP_PRIVATE";
	var OAUTH_USER_APP_PUBLIC = "OAUTH_USER_APP_PUBLIC";
	var OAUTH_USER_APP_SECRET = "OAUTH_USER_APP_SECRET";

	//alias
	var user = like.getUser();
	var consumer = oauthUtil.getGenericConsumer(OAUTH_APP_PUBLIC, OAUTH_APP_PRIVATE, OAUTH_USER_APP_PUBLIC, OAUTH_USER_APP_SECRET);
	var data = consumer.post(FLUIG_HOST+"/api/public/social/user/"+user,jsonString);}

...