Windows 8.1 and Windows 10 push



Similar documents
Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Precisely Target the Right Audience

1 Overview Configuration on MACH Web Portal 1

Salesforce Mobile Push Notifications Implementation Guide

Salesforce Integration Version 1.2, published 15/04/ :45

Cloud Services MDM. Control Panel Provisioning Guide

Direct Connect for Marketo. Your Guide to CallRail s integration with Marketo

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, Integration Guide IBM

InsideView Lead Enrich Setup Guide for Marketo

Salesforce Integration Guide

Using Windows Azure Mobile Services to Cloud-Enable your Windows Store Apps in C#

Little Green Light & MailChimp: Marketing

Salesforce Opportunities Portlet Documentation v2

Business Mobile App User Guide

Salesforce Installation and Customization Guide for Professional Edition Users

This manual will illustrate how to integrate your WordPress Blog or website with the Docebo Learning Management System.

To Setup Your EFT Processing. To Setup Your Credit Card Processing

Gravity Forms: Creating a Form

GCM for Android Setup Guide

Universal Mobile Ads is a plugin for Unreal Engine 4 that enables the MoPub ad mediation system for ios & Android.

Two Factor Authentication and PKI Token (for Windows)

Salesforce Administrator s Installation Guide

Marketo App Integration in Hootsuite: User Guide

How to integrate Exoclick s conversions tracking with. tracking software voluum

Creating Responsive Drip Campaigns

Magento Extension REVIEW BOOSTER User Guide

KEVY INTEGRATIONS EXACTTARGET AND CRM

Personalizing Your Individual Phone Line Setup For assistance, please call ext. 102.

EFORMS MANUAL FOR SHAREPOINT ONLINE

DirectSmile Cross Media and Salesforce

Using CRM. Quick Reference. August 4, CRM Use for Agents Page 1 of 31

account multiple solutions

1 TABLE OF CONTENTS Page 1

GLOBAL EXPRESS PAYMENT CENTER

Salesforce Mobile Push Notifications Implementation Guide

Instructions for Registering on MyHealth

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

In a browser window, enter the Canvas registration URL: silverlakemustangs.instructure.com

PARENT/GUARDIAN ACCESS TO SCHOOLOGY

DROPFILES SUPPORT. Main advantages:

Cloud Services MDM. Overview & Setup Admin Guide

VoIP Intercom and Elastix Server

Ariba Supplier Mobile App Quick Start Guide

Brainshark/Salesforce.com Integration Installation Procedures

Configuring Salesforce

skype ID: store.belvg US phone number:

The Petals Exchange 2007 Update

How to create database in GlycomcsPortal?

Configuring. SuccessFactors. Chapter 67

BULK SMS APPLICATION USER MANUAL

Z-Way Home Automation User Interface Documentation. (c) Z-Wave.Me Team, based on Version 2.0

Configuring SuccessFactors

FedTraveler.com. Log o FedTraveler.com using your valid Member ID and PIN.

Online Exam Instructions

Creating a Digital Signature in Adobe Acrobat Created on 1/11/2013 2:48:00 PM

PAYROLL BPP - PA30. Change Record:

USER GUIDE for Salesforce

SOCIALMEDIABOX SETUP GUIDE

MUNIS Leave Request System (Employee Self Service) Time Off Approver

Online Statements. About this guide. Important information

Overview. About Interstitial Ads: About Banner Ads: About Offer-Wall Ads: ADAttract Account & ID

A quick guide to... Setting Up Goals

MDM User Guide June 2012

DOCQN. Account. CA Departm. Version 2.0

Startup Guide. Version 2.3.9

Configuration Guide - OneDesk to SalesForce Connector

Module - Facebook PS Connect

Active Merchandiser: Review Spotlight Orders and Performance

Create or customize CRM system dashboards

Generating an Apple Enterprise MDM Certificate

QAS Small Business for Salesforce CRM

Getting Started on Fitmoo / User Guide

Getting Started with Apple Pay on the Authorize.Net Platform

3dCart Shopping Cart Software V3.X Affiliate Program Guide

PowerSchool. Parent Single Sign-On (SSO)

Drop Shipping. Contents. Overview 2. Quick Tips 3. Basic Setup 4. Drop Ship Options 5. File Pickup Options 6. Messages 8

Installing Your Multifunction to Your Network for the First Time

Form Builder in Agile CRM

ViewPoint Mobile Quick Start Guide

Orange County Department of Education Vendor Portal Vendor Guide

Mail Chimp Basics. Glossary

Spambrella SaaS Encryption Enablement for Customers, Domains and Users Quick Start Guide

End User Guide Wazoku s Idea Spotlight


Frequently Asked Questions Ag Banking Online

ExactTarget GENESIS I N TEGRATION GUIDE

ONLINE BANKING OWNER S MANUAL

Using the ELMS Management Tool (EMT) to Create Independent Study Spaces in ELMS Canvas

SP-initiated SSO for Smartsheet is automatically enabled when the SAML feature is activated.

RSA Security Analytics

Introduction...3. The Integrations Section...4. Create a New Integration...5. Create a New Trigger...6. Custom fields Custom Variables...

You simply need to define your flows and triggers; Built.io Flow will do the rest for you.

Connected Data. Connected Data requirements for SSO

Sales Rabbit Integration

Transcription:

Windows 8.1 and Windows 10 push To enable PUSH-notifications you will have to perform the following actions: Add the application to your space in devtodev system Activate Windows Messaging Service ang get SID and Client Secret values Add SID and Client Secret to the application integration settings in devtodev system. Integrate devtodev SDK to the application (see the "SDK integration" section to learn more how to integrate and initialize devtodev SDK) Add several lines of the code to switch on the push-notification in the SDK Create a campaign for sending push-notifications in "Push" section How to get SID and Client Secret 1. Go to the application settings in your Windows Store dashboard 2. Open Push Notifications submenu in Services menu Last update 05.05.2016 1

3. Go to Live Services site: 4. "Package SID" and "Client secret" will be your SID and Client Secret strings respectively Last update 05.05.2016 2

Implementation to app 1. Integrate devtodev SDK to your project. Even if you don't need devtodev analytics in your app, you should call DevToDev.SDK.Initialize(string appkey, string appsecret), DevToDev.SDK.OnActivate() and DevToDev.SDK.OnDeactivate() functions. Read more how to do it in Chapters 1.2 and 2.1 of the manual. 2. Add the following source after DevToDev.SDK.Initialize(string appkey, string appsecret) is called: DevToDev.PushManager.PushTokenReceived = (pushtoken) => { //pushtoken - the string contains the push token }; DevToDev.PushManager.PushTokenFailed = (error) => { //error - the error string. This function will be called when push token have not been obtained. }; DevToDev.PushManager.PushReceived = (PushType type, IDictionary<string, string> params) => { //type - type of the push message //params - IDictionary<string, string> with the custom user parameters form the push message }; DevToDev.PushManager.Initialize(); The PushType can have one of the following values: public enum PushType { ToastNotification, RawNotification } 3. Put the following source in your Application class (usually it is App.xaml.cs file) at the end of the OnLaunched(LaunchActivatedEventArgs e) function. For Example: protected override void OnLaunched(LaunchActivatedEventArgs e) { //...other source DevToDev.PushManager.HandleToastNavigation(e); } 4. Attention! This SDK could be integrated with Windows/Windows Phone 8.1 and Windows 10 projects. If you app is used on Windows/Windows Phone 8.1 devices, don't forget to add the "Toast capable" flag in your Package.appmanifest. Last update 05.05.2016 3

5. Keep in mind that your application must be built with the same Windows Store preferences you used in Chapter 3.2. In the "Create App Packages" window you have to log in with your Live ID and pick the appropriate application form the list. A file Package.StoreAssociation.xml will be added into the Project. Last update 05.05.2016 4

Changing the application settings in devtodev system 1. Proceed to Settings of your app. 2. Go to Integration page and insert the previously received Package SID and Client secret to appropriate fields in Push notifications section. 3. If the Package SID and Client secret are correct, you will see the following result Last update 05.05.2016 5

Creating a new push-notification in devtodev interface 1. Open PUSH tag and click on Create push or ADD NEW PUSH button. 2. Fill in campaign name, select an app for delivery. Attention! You can create a campaign only after at least one push token comes from devtodev SDK integrated to your application. Otherwise the app will not be displayed in the list. Last update 05.05.2016 6

3. Choose the user group to send a message. You can choose existing segment or create a new one. 4. Enter toast or tile details a. Toast Last update 05.05.2016 7

b. Tile 5. Schedule the delivery Last update 05.05.2016 8

6. Thats it! Last update 05.05.2016 9