1. License. 2. Introduction. a. Read Leaderboard b. Write and Flush Leaderboards Custom widgets, 3D widgets and VR mode...

Size: px
Start display at page:

Download "1. License. 2. Introduction. a. Read Leaderboard b. Write and Flush Leaderboards Custom widgets, 3D widgets and VR mode..."

Transcription

1

2 Contents 1. License Introduction Plugin updates... 5 a. Update from previous versions to Example project GitHub Repository Getting started Plugin usage... 9 a. Blueprint implementation... 9 b. C++ implementation Identity a. Login and Logout b. Requesting permissions Users a. Query Users b. Download User Avatar Friends a. Query Friends b. Invite Friends Simple c. Invite Friends with prefill and custom dialog d. App Invites Share a. Share Post b. Share Image c. Share Link Content d. Share Photo Content e. Open Graph Story Achievements a. Write Achievement b. Query Achievements Leaderboards... 28

3 a. Read Leaderboard b. Write and Flush Leaderboards Custom widgets, 3D widgets and VR mode License Copyright 2018 gamedna Ltd. All rights reserved. gamedna Ltd grants you a non-exclusive, non-transferable, non-sublicensable license for a single User to use, reproduce, display, perform, and modify the Extended Facebook Online Subsystem for Unreal Engine 4 for any lawful purpose (the "License"). The License becomes effective on the date you buy Extended Facebook Online Subsystem for Unreal Engine 4. The License does not grant you any title or ownership in the Licensed Technology. You may Distribute the Extended Facebook Online Subsystem for Unreal Engine 4 incorporated in object code format only as an inseparable part of a Product to end users. The Product may not contain any Plugin Content in uncooked source format. Unreal is a trademark or registered trademark of Epic Games, Inc. in the United States of America and elsewhere. Unreal Engine, Copyright , Epic Games, Inc. All rights reserved. Facebook is a trademark of Facebook, Inc. 2. Introduction Extended Facebook Online Subsystem is a plugin for Unreal Engine 4 that integrates the Facebook social network for all platforms (using embedded UMG widget) and ios & Android (using native Facebook SDK). It implements Online Subsystem so you can use available features exposed by this and/or special functions and Blueprints nodes designed only for Facebook. Extended Facebook Online Subsystem plugin helps you creating social and interactive games by integrating features from Facebook for Games. Use this plugin to drive more installs and further engage players in your awesome game! Native implementation guarantees seamless integration and the best user experience. Embedded UMG widget implementation makes plugin available for all platforms. Required Unreal Engine 4.10 or above because of Android Plugin support! Current plugin version: Support: support@gamednastudio.com

4 FEATURES: Native implementation means native features provided by Facebook SDK for ios & Android (for example native platform dialogs). Embedded UMG widget implementation makes plugin available for all platforms. Supports 3D widgets for VR. It exposes simple but powerful API. No more HTTP requests or JSON parsing! Implements Unreal Engine Online Subsystem. All features are exposed to Blueprints. Out of the box for all platforms. No additional libraries are needed! Works with Blueprint-only & source code projects. Works with Launcher & GitHub UE4 versions. Facebook login and logout. Requesting new publish permissions. Requesting new read permissions. Getting Facebook users information. Getting users avatars. Getting list of all friends playing your game. Getting list of all friends not playing your game in order to invite. Inviting friends with Game Request. Inviting friends with AppInvite (without login requirement). Reading and writing Facebook Achievements. Reading and writing Facebook Leaderboards. Sharing post on the timeline (in the background without dialog). Sharing image on the timeline (in the background without dialog). Sharing image on the timeline via dialog (without login requirement). Sharing link on the timeline via dialog (without login requirement). Posting Open Graph story. WHAT YOU GET: All needed files and SDKs Full source code available on GitHub private repo! Compatible with ios & Android (all-in-one) Supports gamedna installer. No more downloading SDKs and creating packages on your own! Easy plugin setup All future updates are included Support via

5 3. Plugin updates a. Update from previous versions to Delete all files under Plugins/ExtendedFacebook directory and install plugin again.

6 4. Example project You can download example project at the following address: 5. GitHub Repository Please the receipt of this plugin's purchase to for access to the GitHub repository used to develop this plugin!

7 6. Getting started 1. Before using this plugin you should have basic knowledge about Facebook apps development so go to study some initial tutorials and create a new Facebook application. 2. Unpack the plugin archive to Plugins folder in your UE4 project folder (for project plugins) or Engine/Plugins/Marketplace (for engine plugins) and start the editor. 3. Enable Extended Facebook in Edit -> Plugins -> Online -> Extended Facebook. 4. Download gamedna installer plugin from the releases tab on the official GitHub repository Install plugin and SDKs as described in the included documentation.

8 5. Platforms other than mobile configuration (Web Browser mode): a) Go to Facebook Dashboard -> Your Game -> Facebook Login -> Settings. b) Copy link: and paste to the field called Valid OAuth redirect URIs. 6. Go to Project Settings -> Plugins -> Extended Facebook and configure Facebook settings. If you want to use Extended Facebook for VR on Android or ios you should enable Force Web Browser Mode.

9 7. Plugin usage a. Blueprint implementation In Blueprints you can use all awesome nodes specially designed for Facebook. It covers all functionality provided by this plugin.

10 b. C++ implementation Add the following line to your *.Build.cs file private dependency module name: PrivateDependencyModuleNames.AddRange(new string[] { "OnlineSubsystemExtendedFacebook" }); Now you can use standard UE4 Online Subsystem 1 but it s highly recommended to use special functions provided by this plugin because basic Online Subsystem is very raw and complicated. In this plugin exists two types of functions: Async Tasks (need delegates for handle callbacks) and Blueprint Library. Example of calling Blueprint Library: #include "OnlineSubsystemExtendedFacebookBlueprintLibrary.h" bool IsLogged = UOnlineSubsystemExtendedFacebookBlueprintLibrary::CheckIfPlayerLoggedIn( ); Example of calling Async Task: #include "Utils/Identity/FacebookLogin.h" UFacebookLogin* FacebookLoginObject = UFacebookLogin::FacebookLogin(); FacebookLoginObject->OnSuccess.AddDynamic(this, &UClassName::SuccessCallback) FacebookLoginObject->OnFail.AddDynamic(this, &UClassName::FailCallback) FacebookLoginObject->Activate(); 1

11 8. Identity Related Facebook documentation about login: Guide about permissions: Guide about Access Token: Guide about Login Review: a. Login and Logout Facebook Login is a fast and convenient way for people to create accounts and log into your game across multiple platforms. You can simply place Blueprint nodes Facebook Login or Facebook Logout for login/logout behavior (and that's all!). After successfully login you can immediately get Access Token, User ID and Username. CheckIfFacebookPlayerLoggedIn is useful when you want to check if player is connected to Facebook and if Access Token is valid. Login

12 Sample Facebook Login native dialog: Logout

13 b. Requesting permissions Sometimes you need to request additional permissions so FacebookRequestNewPublishPermissions and FacebookRequestNewReadPermissions can be helpful for that. In plugin settings you can set default read permissions which are requested during first Facebook login. Permissions should be comma separated. Read Permissions Sample Facebook Request Read Permissions native dialog:

14 Publish Permissions Sample Facebook Request Publish Permissions native dialog:

15 9. Users Permissions reference: a. Query Users You can query any Facebook user but depends on user permissions and relationships it returns different results. For example for query user birthday info it requires user_birthday permission and for query it requires permission. If user haven t granted these permissions, result for the corresponding parameters will be empty.

16 b. Download User Avatar If you queried Facebook User, you can get Cached Facebook User Info, retrieve Avatar URL and then Download Image based on URL.

17 10. Friends Related Facebook documentation to inviting friends: Related Facebook documentation to App Invite: a. Query Friends Required permissions: user_friends You can query friends who already play your game and get Facebook ID, Name and Avatar URL. b. Invite Friends Simple Required permissions: user_friends You can simply show native invitation Facebook dialog and user can select friends to invite to your game.

18 Sample simple native invitation Facebook dialog: c. Invite Friends with prefill and custom dialog Required permissions: user_friends You can query friends who haven't installed your game yet and make custom invitation dialog. Then user can select friends to invite to your game and provide Facebook User IDs to FacebookInviteFriends function.

19 Sample custom invitation Facebook dialog:

20 d. App Invites [It works only on ios & Android] App Invites allows to invite friends without Facebook login and requesting permissions! What means App Link URL and Preview Image URL you can find in Facebook documentation: Sample App Invites Dialog:

21 11. Share Related Facebook documentation to sharing: a. Share Post Required permissions: publish_actions Share Post allows to share post in the background without showing Facebook dialog. You need to send your game to App Review. Sample Share Post result on Facebook timeline:

22 b. Share Image Required permissions: publish_actions Share Image allows to share image in the background without showing Facebook dialog. You need to send your game to App Review. Sample Share Image result on Facebook timeline:

23 c. Share Link Content [It works only on ios & Android] Share Link Content allows to share post with link without Facebook login and requesting permissions! Sample Share Link Content Dialog:

24 d. Share Photo Content [It works only on ios & Android] Share Photo Content allows to share image without Facebook login and requesting permissions! Sample Share Photo Content Dialog:

25 e. Open Graph Story Related Facebook documentation to Open Graph stories: Required permissions: publish_actions You can post custom Open Graph story. Firstly, you should read Facebook documentation about Open Graph stories and then create your own story on Facebook dashboard. FacebookOpenGraphPost requires Graph Path and Open Graph parameters. Sample Open Graph story posted on Facebook timeline:

26 12. Achievements Related Facebook documentation: a. Write Achievement Required permissions: publish_actions WriteAchievement lets unlock player achievement and post it to user s timeline. Sample achievement unlocked post on Facebook timeline:

27 b. Query Achievements Required permissions: publish_actions

28 13. Leaderboards Related Facebook documentation: a. Read Leaderboard Required permissions: publish_actions b. Write and Flush Leaderboards Required permissions: publish_actions

29 14. Custom widgets, 3D widgets and VR mode Plugin provides functionality for 3D widgets (also in VR mode) and loading Facebook dialog in another widget than main viewport. It is intended for all platforms except mobile. You should simply pass reference of Canvas Panel in your widget (2D or 3D) to Change Facebook Active Widget node and from this moment all Facebook dialogs will be displayed in this Canvas Panel. You can have only one active widget for Facebook. That s all!

1. License. Copyright 2018 gamedna Ltd. All rights reserved.

1. License. Copyright 2018 gamedna Ltd. All rights reserved. Contents 1. License... 3 2. Plugin updates... 4 a. Update from previous versions to 2.6.0... 4 3. Introduction... 5 4. Getting started... 6 5. Example project... 8 6. GitHub Repository... 8 7. Recording

More information

d. Delete data e. Transactions Realtime Features a. Value Listener b. Child Listener c. Remove Listeners

d. Delete data e. Transactions Realtime Features a. Value Listener b. Child Listener c. Remove Listeners Contents 1. License... 5 2. Introduction... 5 3. Plugin updates... 7 a. Update from previous versions to 1.5.0... 7 4. Example project... 8 5. GitHub Repository... 8 6. Getting started... 9 7. Database

More information

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility

PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility PowerExchange for Facebook: How to Configure Open Authentication using the OAuth Utility 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 1. License The MIT License (MIT) Copyright (c) 2018 gamedna Ltd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),

More information

Contents. a. Initialization... 27

Contents. a. Initialization... 27 Contents 1. License... 6 2. Introduction... 7 3. Plugin updates... 8 a. Update from previous versions to 1.10.0... 8 4. Example project... 9 5. GitHub Repository... 9 6. Getting started... 10 7. Mobile

More information

If you re a Facebook marketer, you re likely always looking for ways to

If you re a Facebook marketer, you re likely always looking for ways to Chapter 1: Custom Apps for Fan Page Timelines In This Chapter Using apps for Facebook marketing Extending the Facebook experience Discovering iframes, Application Pages, and Canvas Pages Finding out what

More information

PIMAX TECHNOLOGY(SHANGHAI) CO., LTD. Pimax VR SDK_Unreal. Use Documentation. Version:v_ / 13

PIMAX TECHNOLOGY(SHANGHAI) CO., LTD. Pimax VR SDK_Unreal. Use Documentation. Version:v_ / 13 Pimax VR SDK_Unreal Use Documentation Version:v_1.0.1 1 / 13 1. Preface... 3 1. Purpose of Documentation... 3 2. Environment construction... 4 1. Development Environment...4 2. Supporting software instructions...4

More information

If you are not registered as Developer yet, you need to click blue button Register.

If you are not registered as Developer yet, you need to click blue button Register. Facebook 1. Login to your Facebook account. 2. Go to the Developers page: https://developers.facebook.com/ If you are not registered as Developer yet, you need to click blue button Register. FAQ: Question:

More information

Administering Jive Mobile Apps

Administering Jive Mobile Apps Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Custom App Wrapping for ios... 4 Native App Caching: Android...4 Native App

More information

Integrating Facebook. Contents

Integrating Facebook. Contents Integrating Facebook Grow your audience by making it easy for your readers to like, share or send pages from YourWebShop to their friends on Facebook. Contents Like Button 2 Share Button.. 6 Send Button.

More information

Chat Connect Pro Setup Guide

Chat Connect Pro Setup Guide Chat Connect Pro Setup Guide Wordpress plugin data manager Live Streaming / Video Production Data Feed Plugin Setup Setup Process: Step 1 Purchase Plugin Step 2 Install plugin by uploading plugin inside

More information

Unreal Engine 4 Steamworks Callback Plugin. Release 1.0

Unreal Engine 4 Steamworks Callback Plugin. Release 1.0 Unreal Engine 4 Steamworks Callback Plugin Release 1.0 Oct 06, 2018 Set Up: 1 Initial Set Up 1 2 Getting Started 3 2.1 Enabling Steam Subsystem....................................... 3 2.2 Referencing

More information

CM Social Post Documentation

CM Social Post Documentation CM Social Post Documentation Release 1.0.1 CMExtension March 15, 2016 Contents 1 Overview 3 2 Install & update 5 3 Facebook application 7 4 Facebook personal timeline plugin 13 5 Facebook page timeline

More information

Building Facebook Application using Python

Building Facebook Application using Python Building Facebook Application using Python ECS-15, Fall 2010 Prantik Bhattacharyya Facebook Applications Farmville Game 57.5m users http://www.facebook.com/farmville Causes Issues/Movement 26.4m users

More information

Coveo Platform 7.0. Yammer Connector Guide

Coveo Platform 7.0. Yammer Connector Guide Coveo Platform 7.0 Yammer Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market conditions,

More information

ITP 342 Mobile App Development. APIs

ITP 342 Mobile App Development. APIs ITP 342 Mobile App Development APIs API Application Programming Interface (API) A specification intended to be used as an interface by software components to communicate with each other An API is usually

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 07 Tutorial 2 Part 1 Facebook API Hi everyone, welcome to the

More information

Facebook App Configuration Guide for Luminate Online. Facebook App Configuration Guide for Luminate Online

Facebook App Configuration Guide for Luminate Online. Facebook App Configuration Guide for Luminate Online 1 TABLE OF CONTENTS Part 1: Before you Begin... 3 1.1 Understanding Facebook Permissions... 3 1.2 Prerequisites... 4 Part 2: App Setup... 5 2.1 Settings... 5 2.2 App Details... 6 Part 3: App Submission...

More information

OpenDrive Wordpress Plugin Guide

OpenDrive Wordpress Plugin Guide OpenDrive Wordpress Plugin Guide Version 1.0.4 OpenDrive Online storage, backup and cloud content management Contents 1. Drive:... 3 1.1 Drive... 3 1.2 Working with files... 4 1.2.1 Work with a particular

More information

Platform SDK. Version 1.24

Platform SDK. Version 1.24 Platform SDK Version 1.24 2 Introduction Oculus Platform SDK Copyrights and Trademarks 2017 Oculus VR, LLC. All Rights Reserved. OCULUS VR, OCULUS, and RIFT are trademarks of Oculus VR, LLC. (C) Oculus

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.7.0 The owncloud developers October 30, 2018 CONTENTS 1 Release Notes 1 1.1 Changes in 2.7.0............................................. 1 1.2 Changes in 2.6.0.............................................

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

SOCIAL LOGIN FOR MAGENTO 2 USER GUIDE

SOCIAL LOGIN FOR MAGENTO 2 USER GUIDE 1 User Guide Social Login for Magento 2 Extension SOCIAL LOGIN FOR MAGENTO 2 USER GUIDE BSSCOMMERCE 1 2 User Guide Social Login for Magento 2 Extension Contents 1. Social Login for Magento 2 Extension

More information

FB Image Contest. Users Manual

FB Image Contest. Users Manual FB Image Contest Users Manual Table of contents Description.. 3 Step by step installation... 5 The administration interface.. 10 Creating a new contest... 13 Creating a Facebook Application.. 19 Adding

More information

This tutorial is intended to make you comfortable in getting started with the Firebase backend platform and its various functions.

This tutorial is intended to make you comfortable in getting started with the Firebase backend platform and its various functions. Firebase About the Tutorial Firebase is a backend platform for building Web, Android and IOS applications. It offers real time database, different APIs, multiple authentication types and hosting platform.

More information

ReportPlus Embedded Web SDK Guide

ReportPlus Embedded Web SDK Guide ReportPlus Embedded Web SDK Guide ReportPlus Web Embedding Guide 1.4 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENT IS PROVIDED AS IS WITHOUT ANY EXPRESS REPRESENTATIONS OF WARRANTIES. IN ADDITION,

More information

This document explains how to obtain a direct link from within an existing Facebook page to the hotel s booking

This document explains how to obtain a direct link from within an existing Facebook page to the hotel s booking How to link Facebook with the WuBook Booking Engine! This document explains how to obtain a direct link from within an existing Facebook page to the hotel s booking engine page at WuBook via the WuBook

More information

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook 1 BLACKBERRY SPARK COMMUNICATIONS PLATFORM Getting Started Workbook 2 2018 BlackBerry. All rights reserved. BlackBerry and related trademarks, names and logos are the property of BlackBerry

More information

Lab 4: create a Facebook Messenger bot and connect it to the Watson Conversation service

Lab 4: create a Facebook Messenger bot and connect it to the Watson Conversation service Lab 4: create a Facebook Messenger bot and connect it to the Watson Conversation service Overview In this lab, you'll create advanced Node-RED flows that: Connect the Watson Conversation service to Facebook

More information

SugarCRM for Hootsuite

SugarCRM for Hootsuite SugarCRM for Hootsuite User Guide Document izeno Pte Ltd Version 1.0 Hootsuite for Sugar User Guide P a g e 1 Revision / Modifications SN Version Date Author Comments 1 0.1 Wed 20 December 2017 Kris Haryadi

More information

Xerox Mobile Link App

Xerox Mobile Link App Software Version 2.1.01 Version 1.0 Xerox Mobile Link App Information Assurance Disclosure 2017 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, Xerox Extensible Interface Platform are

More information

API Signup Instructions

API Signup Instructions API Signup Instructions Pixabay The API Key for Pixabay is already included in the FotoPress plugin, so you don t need to do anything with it. Flickr 1. Flickr is also a part of Yahoo. If you already have

More information

ArcGIS Runtime SDK for Android An Introduction. Xueming

ArcGIS Runtime SDK for Android An Introduction. Xueming ArcGIS Runtime SDK for Android An Introduction Dan O Neill @jdoneill @doneill Xueming Wu @xuemingrocks Agenda Introduction to the ArcGIS Android SDK Maps & Layers Basemaps (Portal) Location Place Search

More information

OpenDrive Wordpress Plugin Guide

OpenDrive Wordpress Plugin Guide OpenDrive Wordpress Plugin Guide Version 2.0.1 OpenDrive Online storage, backup and cloud content management Contents 1. Drive 3 1.1 Drive... 3 1.2 Working with files... 4 1.2.1 Work with a particular

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

AEM Mobile: Setting up Google as an Identity Provider

AEM Mobile: Setting up Google as an Identity Provider AEM Mobile: Setting up Google as an Identity Provider Requirement: Prerequisite knowledge Understanding of AEM Mobile Required Products AEM Mobile Google Account Generating the client ID and secret To

More information

YU Kaltura Media Package User's Guide For version 1.1.x. Written by Media and Information Technology Center, Yamaguchi University.

YU Kaltura Media Package User's Guide For version 1.1.x. Written by Media and Information Technology Center, Yamaguchi University. YU Kaltura Media Package User's Guide For version 1.1.x Written by Media and Information Technology Center, Yamaguchi University. May 22th, 2018 Table of contents 1. Summary... 2 2. Installation... 4 2.1

More information

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0 REST API Operations 8.0 Release 12/1/2015 Version 8.0.0 Table of Contents Business Object Operations... 3 Search Operations... 6 Security Operations... 8 Service Operations... 11 Business Object Operations

More information

Magento Survey Extension User Guide

Magento Survey Extension User Guide Magento Survey Extension User Guide Page 1 Table of Contents To Access Plugin, Activate API Key... 3 Create Questions... 5 Manage Survey... 6 Assign Question to Survey... 7 Reveal Survey In Three Ways...

More information

SOCIAL LOGIN FOR MAGENTO 2

SOCIAL LOGIN FOR MAGENTO 2 1 User Guide Social Login for Magento 2 SOCIAL LOGIN FOR MAGENTO 2 USER GUIDE BSS COMMERCE 1 2 User Guide Social Login for Magento 2 Contents 1. Social Login for Magento 2 Extension Overview... 3 2. How

More information

Administrator's and Developer's Guide

Administrator's and Developer's Guide Administrator's and Developer's Guide Rev: 23 May 2016 Administrator's and Developer's Guide A Quick Start Guide and Configuration Reference for Administrators and Developers Table of Contents Chapter

More information

TeamChat 12.0 Guide for administrators

TeamChat 12.0 Guide for administrators TeamChat 12.0 Guide for administrators WWW.ICEWARP.COM 1 WebClient User Guide 1. Content 1. Content 1 2. About TeamChat 2 3. General 3 4. How to enable and disable TeamChat feature 4 5. Domains 7 6. Users

More information

Info Input Express Network Edition

Info Input Express Network Edition Info Input Express Network Edition Administrator s Guide A-61892 Table of Contents Using Info Input Express to Create and Retrieve Documents... 9 Compatibility... 9 Contents of this Guide... 9 Terminology...

More information

Setting up your Netvibes Dashboard Adding a Blog to your Dashboard

Setting up your Netvibes Dashboard Adding a Blog to your Dashboard Cr e a t i ngali s t e ni ngda s hboa r d wi t hne t vi be s Ne t v i be s Table of Contents Introduction... 1 Setting up your Netvibes Dashboard... 2 Adding a Blog to your Dashboard... 2 Adding Twitter

More information

Facebook Insights User guide

Facebook Insights User guide Facebook Insights User guide 2 Overview Facebook Insights brings the page administrators valuable perspective on the performance of the pages they manage. Analytics allows integration of Insights data

More information

esignlive for Microsoft Dynamics CRM

esignlive for Microsoft Dynamics CRM esignlive for Microsoft Dynamics CRM Deployment Guide Product Release: 2.1 Date: June 29, 2018 esignlive 8200 Decarie Blvd, Suite 300 Montreal, Quebec H4P 2P5 Phone: 1-855-MYESIGN Fax: (514) 337-5258 Web:

More information

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

More information

Salesforce External Identity Implementation Guide

Salesforce External Identity Implementation Guide Salesforce External Identity Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: December 20, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Tools. Support. A user represents a person on Facebook. The /{user-id} node returns a single user.

Tools. Support. A user represents a person on Facebook. The /{user-id} node returns a single user. 1 of 5 Search in docs Product Graph API Version Login Sharing App Links User /{user-id} A user represents a person on Facebook. The /{user-id} node returns a single user. Games Payments Ads Reading Audience

More information

Unifer Documentation. Release V1.0. Matthew S

Unifer Documentation. Release V1.0. Matthew S Unifer Documentation Release V1.0 Matthew S July 28, 2014 Contents 1 Unifer Tutorial - Notes Web App 3 1.1 Setting up................................................. 3 1.2 Getting the Template...........................................

More information

FACEBOOK CONNECT PLUG-IN USER GUIDE

FACEBOOK CONNECT PLUG-IN USER GUIDE support@simicart.com Phone: 084.4.8585.4587 FACEBOOK CONNECT PLUG-IN USER GUIDE Table of Contents 1. INTRODUCTION... 3 2. HOW TO INSTALL... 4 3. HOW TO USE FACEBOOK CONNECT... 5 a. Login with Facebook

More information

Firebase Essentials. Android Edition

Firebase Essentials. Android Edition Firebase Essentials Android Edition Firebase Essentials Android Edition First Edition 2017 Neil Smyth / Payload Media, Inc. All Rights Reserved. This book is provided for personal use only. Unauthorized

More information

Enhancing cloud applications by using external authentication services. 2015, 2016 IBM Corporation

Enhancing cloud applications by using external authentication services. 2015, 2016 IBM Corporation Enhancing cloud applications by using external authentication services After you complete this section, you should understand: Terminology such as authentication, identity, and ID token The benefits of

More information

Administering Jive Mobile Apps for ios and Android

Administering Jive Mobile Apps for ios and Android Administering Jive Mobile Apps for ios and Android TOC 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios...3 Custom App Wrapping for ios...3 Authentication with Mobile

More information

Sample Spark Web-App. Overview. Prerequisites

Sample Spark Web-App. Overview. Prerequisites Sample Spark Web-App Overview Follow along with these instructions using the sample Guessing Game project provided to you. This guide will walk you through setting up your workspace, compiling and running

More information

GitHub Classroom. Click Sign up in to top right of the page, and the following dialog is displayed.

GitHub Classroom. Click Sign up in to top right of the page, and the following dialog is displayed. GitHub Classroom This semester we will be using private repositories in GitHub Classroom to store student source code. To use GitHub Classroom, you must have a GitHub account. This note lists all the steps

More information

Authentication Provider - Facebook. Setup Guide

Authentication Provider - Facebook. Setup Guide Authentication Provider - Facebook Setup Guide Disclaimer THIS DOCUMENTATION AND ALL INFORMATION CONTAINED HEREIN ( MATERIAL ) IS PROVIDED FOR GENERAL INFORMATION PURPOSES ONLY. GLOBAL REACH AND ITS LICENSORS

More information

Oracle Cloud Using the Eventbrite Adapter. Release 17.3

Oracle Cloud Using the Eventbrite Adapter. Release 17.3 Oracle Cloud Using the Eventbrite Adapter Release 17.3 E69235-08 September 2017 Oracle Cloud Using the Eventbrite Adapter, Release 17.3 E69235-08 Copyright 2016, 2017, Oracle and/or its affiliates. All

More information

SQream Dashboard Version SQream Technologies

SQream Dashboard Version SQream Technologies SQream Dashboard Version 1.1.0 SQream Technologies 2018-11-06 Table of Contents Overview................................................................................... 1 1. The SQream Dashboard...................................................................

More information

ArcGIS Runtime SDK for Android: Building Apps. Shelly Gill

ArcGIS Runtime SDK for Android: Building Apps. Shelly Gill ArcGIS Runtime SDK for Android: Building Apps Shelly Gill Agenda Getting started SDK Common patterns and Example Apps Android platform updates Kotlin Team goals for upcoming releases Other sessions ArcGIS

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Origination Social Media Integration User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Origination Social Media Integration User Manual July 2017 Oracle Financial

More information

6/29/ :38 AM 1

6/29/ :38 AM 1 6/29/2017 11:38 AM 1 Creating an Event Hub In this lab, you will create an Event Hub. What you need for this lab An Azure Subscription Create an event hub Take the following steps to create an event hub

More information

Oracle Cloud Using the Microsoft Adapter. Release 17.3

Oracle Cloud Using the Microsoft  Adapter. Release 17.3 Oracle Cloud Using the Microsoft Email Adapter Release 17.3 E70297-10 December 2017 Oracle Cloud Using the Microsoft Email Adapter, Release 17.3 E70297-10 Copyright 2016, 2017, Oracle and/or its affiliates.

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

Rutgers Alumni Scarlet Web Online Community Getting Started Guide. Contents. Page 1 6/27/08

Rutgers Alumni Scarlet Web Online Community Getting Started Guide. Contents. Page 1 6/27/08 Contents OVERVIEW... 2 FIRST TIME LOGIN... 2 RETURN VISITS... 3 NAVIGATING THE ALUMNI HOME PAGE WHEN YOU ARE LOGGED IN... 5 OVERVIEW OF THE SCARLET WEB ONLINE COMMUNITY... 5 PROFILE... 6 OVERVIEW OF THE

More information

Jazz for Justice Pensacola Ambassador of Justice Fundraising Page

Jazz for Justice Pensacola Ambassador of Justice Fundraising Page Thank you for signing up to be an Ambassador of Justice. By creating a ticket fundraising page to sell VIP Experience Passes to the 2018 event, you are supporting the continued effort of Legal Services

More information

Salesforce External Identity Implementation Guide

Salesforce External Identity Implementation Guide Salesforce External Identity Implementation Guide Salesforce, Summer 17 @salesforcedocs Last updated: September 28, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Table of Contents. I. How do I register for a new account? II. How do I log in? (I already have a MyJohnDeere.com account.)

Table of Contents. I. How do I register for a new account? II. How do I log in? (I already have a MyJohnDeere.com account.) Quick Start Guide If you are an App Developer, you can get started by adding a new app and configuring it to consume Deere APIs on developer.deere.com. Use this Quick Start Guide to find and try our APIs.

More information

FREE AJAX SUITE. User Guide FOR MAGENTO 2. Version: Release Date: Product Page: Ajax Suite. Support:

FREE AJAX SUITE. User Guide FOR MAGENTO 2. Version: Release Date: Product Page: Ajax Suite. Support: FREE AJAX SUITE FOR MAGENTO 2 User Guide Version: 1.2.0 Release Date: 19.09.2017 Product Page: Ajax Suite Support: info@tigren.com C O P Y R I G H T 2017 TABLE OF CONTENTS Installation. 1 Ajax Suite....2

More information

RSA NetWitness Logs. Salesforce. Event Source Log Configuration Guide. Last Modified: Wednesday, February 14, 2018

RSA NetWitness Logs. Salesforce. Event Source Log Configuration Guide. Last Modified: Wednesday, February 14, 2018 RSA NetWitness Logs Event Source Log Configuration Guide Salesforce Last Modified: Wednesday, February 14, 2018 Event Source Product Information: Vendor: Salesforce Event Source: CRM Versions: API v1.0

More information

Windows Azure Mobile Services

Windows Azure Mobile Services Deliver Solutions, Deliver Careers, Deliver Results Windows Azure Mobile Services September 13, 2013 Today s Speaker @justintspradlin http://www.linkedin.com/in/justintspradlin Agenda Windows Azure Mobile

More information

Workplace Online Using a standard web browser, simply login at us.awp.autotask.net using the credentials you ve been given.

Workplace Online Using a standard web browser, simply login at us.awp.autotask.net using the credentials you ve been given. Quick Start Guide WELCOME Thank you for taking the time to evaluate Autotask Workplace. This guide will help you quickly see how Workplace can benefit your business, especially for collaboration and working

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

Oracle Banking APIs. Part No. E Origination Social Media Integration Guide Release April 2018

Oracle Banking APIs. Part No. E Origination Social Media Integration Guide Release April 2018 Oracle Banking APIs Origination Social Media Integration Guide Release 18.1.0.0.0 Part No. E94092-01 April 2018 Origination Social Media Integration Guide April 2018 Oracle Financial Services Software

More information

Terms and Conditions

Terms and Conditions - 1 - Terms and Conditions LEGAL NOTICE The Publisher has strived to be as accurate and complete as possible in the creation of this report, notwithstanding the fact that he does not warrant or represent

More information

1. Click on the button in your cover photo. 2. Chose the Donate Now option in the drop-down menu.

1. Click on the button in your cover photo. 2. Chose the Donate Now option in the drop-down menu. Connect Facebook to a WidgetMakr Widget You have a Facebook Page, and you have a fundraising widget set up for your organization. Now, how do you connect the two? There are several options: 1. Easiest:

More information

ISEC7 Mobile Exchange Delegate

ISEC7 Mobile Exchange Delegate ios User Documentation 1 License/Subscription 4 1.1 Free version 4 1.2 Activating company account 5 1.3 Premium Subscription 8 2 Create Master Account 16 3 Add Delegate Access 19 4 Add Shared Calendars

More information

Integrate Microsoft Office 365. EventTracker v8.x and above

Integrate Microsoft Office 365. EventTracker v8.x and above EventTracker v8.x and above Publication Date: March 5, 2017 Abstract This guide provides instructions to configure Office 365 to generate logs for critical events. Once EventTracker is configured to collect

More information

BrainCert Enterprise LMS. Learning Management System (LMS) documentation Administrator Guide Version 3.0

BrainCert Enterprise LMS. Learning Management System (LMS) documentation Administrator Guide Version 3.0 BrainCert Enterprise LMS Learning Management System (LMS) documentation Administrator Guide Version 3.0 1 P a g e Table of Contents... 3... 3... 4... 4... 5... 5... 6... 6... 8... 8... 9... 9... 10...

More information

lab Creating a Low Cost Sync Database for JavaScript Applications with AWS V1.00 AWS Certified Developer Associate lab title Course title

lab Creating a Low Cost Sync Database for JavaScript Applications with AWS V1.00 AWS Certified Developer Associate lab title Course title lab lab title Creating a Low Cost Sync Database for JavaScript Applications with AWS V1.00 Course title AWS Certified Developer Associate Table of Contents Contents Table of Contents... 1 About the Lab...

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

More information

Using OAuth 2.0 to Access ionbiz APIs

Using OAuth 2.0 to Access ionbiz APIs Using OAuth 2.0 to Access ionbiz APIs ionbiz APIs use the OAuth 2.0 protocol for authentication and authorization. ionbiz supports common OAuth 2.0 scenarios such as those for web server, installed, and

More information

October J. Polycom Cloud Services Portal

October J. Polycom Cloud Services Portal October 2018 3725-42461-001J Polycom Cloud Services Portal Copyright 2018, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another language or format, or

More information

sanction Documentation

sanction Documentation sanction Documentation Release 0.4 Demian Brecht May 14, 2014 Contents 1 Overview 3 2 Quickstart 5 2.1 Instantiation............................................... 5 2.2 Authorization Request..........................................

More information

Connect-2-Everything SAML SSO (client documentation)

Connect-2-Everything SAML SSO (client documentation) Connect-2-Everything SAML SSO (client documentation) Table of Contents Summary Overview Refined tags Summary The Connect-2-Everything landing page by Refined Data allows Adobe Connect account holders to

More information

Cloud Access Manager Configuration Guide

Cloud Access Manager Configuration Guide Cloud Access Manager 8.1.3 Configuration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

PORTALS, DASHBOARDS AND WIDGETS DIGITAL EXPERIENCE MANAGER 7.2

PORTALS, DASHBOARDS AND WIDGETS DIGITAL EXPERIENCE MANAGER 7.2 PORTALS, DASHBOARDS AND WIDGETS 1 SUMMARY 1 INTRODUCTION... 4 2 INSTALLATION... 5 2.1 How to install Portal Factory... 5 2.2 Required modules... 5 3 CREATING A PORTAL... 8 3.1 Creating a new Portal site...

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

Facebook Page Insights

Facebook Page Insights Facebook Product Guide for Facebook Page owners Businesses will be better in a connected world. That s why we connect 800M people and their friends to the things they care about, using social technologies

More information

Kaltura App Things to Remember... 3 Downloading the App My Media... 4

Kaltura App Things to Remember... 3 Downloading the App My Media... 4 Table of Contents Kaltura App... 3 Things to Remember... 3 Downloading the App... 3 My Media... 4 To access My Media from the MediaSpace mobile app... 4 Actions List... 6 To publish a video... 7 To delete

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Centrify for Dropbox Deployment Guide

Centrify for Dropbox Deployment Guide CENTRIFY DEPLOYMENT GUIDE Centrify for Dropbox Deployment Guide Abstract Centrify provides mobile device management and single sign-on services that you can trust and count on as a critical component of

More information

Central Authentication Service Integration 2.0 Administration Guide May 2014

Central Authentication Service Integration 2.0 Administration Guide May 2014 Central Authentication Service Integration 2.0 Administration Guide May 2014 Contents Purpose of this document About CAS Compatibility New features in this release Copyright 2014 Desire2Learn Incorporated.

More information

Oracle Cloud Using the Eventbrite Adapter with Oracle Integration

Oracle Cloud Using the Eventbrite Adapter with Oracle Integration Oracle Cloud Using the Eventbrite Adapter with Oracle Integration E85506-05 January 2019 Oracle Cloud Using the Eventbrite Adapter with Oracle Integration, E85506-05 Copyright 2017, 2019, Oracle and/or

More information

Oracle Cloud Using the MailChimp Adapter. Release 17.3

Oracle Cloud Using the MailChimp Adapter. Release 17.3 Oracle Cloud Using the MailChimp Adapter Release 17.3 E70293-07 September 2017 Oracle Cloud Using the MailChimp Adapter, Release 17.3 E70293-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide

SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide Introduction This onboarding guide covers tasks that account administrators need to perform to set up SAS Visual Statistics and SAS Visual Analytics

More information

User Guide. Version 8.0

User Guide. Version 8.0 User Guide Version 8.0 Contents 1 Getting Started... iii 1.1... About... iii 2 Logging In... 4 2.1... Choosing Security Questions... 4 3 The File Manager... 5 3.1... Uploading a file... 6 3.2... Downloading

More information

How to Use TeamSnap for Parents

How to Use TeamSnap for Parents How to Use TeamSnap for Parents This is a How To Guide for parents of children playing in North Park Little League who want to learn how to use TeamSnap. TeamSnap helps Managers: Organize the roster and

More information

Resource Manager System Upgrade Guide

Resource Manager System Upgrade Guide [Type the document title] 7.1.0 December 2012 3725-72106-001A Polycom RealPresence Resource Manager System Upgrade Guide Polycom Document Title 1 Trademark Information POLYCOM and the names and marks associated

More information

Setting Up Jive for SharePoint Online and Office 365. Introduction 2

Setting Up Jive for SharePoint Online and Office 365. Introduction 2 Setting Up Jive for SharePoint Online and Office 365 Introduction 2 Introduction 3 Contents 4 Contents Setting Up Jive for SharePoint Online and Office 365...5 Jive for SharePoint Online System Requirements...5

More information