django-gcm Documentation
|
|
|
- Ariel Fields
- 10 years ago
- Views:
Transcription
1 django-gcm Documentation Release Adam Bogdal August 23, 2015
2
3 Contents 1 Quickstart 3 2 Sending messages Multicast message Signals 7 4 Extending device model Device model Use your model Api key authentication Adding user field Resource class Python Module Index 13 i
4 ii
5 django-gcm Documentation, Release Django-gcm is a reusable application. It serves as a server for the GCM service and allows you to register devices and send messages to them. Contents: Contents 1
6 django-gcm Documentation, Release Contents
7 CHAPTER 1 Quickstart 1. Install package via pip: $ pip install django-gcm 2. Add django-gcm resources to your URL router: # urls.py from django.conf.urls import include, patterns, url urlpatterns = patterns('', url(r'', include('gcm.urls')), ) To check gcm urls just use the following command: $ python manage.py gcm_urls GCM urls: * Register device /gcm/v1/device/register/ * Unregister device /gcm/v1/device/unregister/ 3. Configure django-gcm in your settings.py file: INSTALLED_APPS = [ #... 'gcm', ] GCM_APIKEY = "<api_key>" Note: To obtain api key go to and grab the key for the server app. 3
8 django-gcm Documentation, Release Chapter 1. Quickstart
9 CHAPTER 2 Sending messages Using console: # Get the list of devices $ python manage.py gcm_messenger --devices > Devices list: > (#1) My phone # python manage.py gcm_messenger <device_id> <message> [--collapse-key <key>] $ python manage.py gcm_messenger 1 'my test message' Using Django orm: from gcm.models import get_device_model Device = get_device_model() my_phone = Device.objects.get(name='My phone') my_phone.send_message('my test message', collapse_key='something') collapse_key parameter is optional (default message). If you want to send additional arguments like delay_while_idle or other, add them as named variables e.g.: my_phone.send_message('my test message', delay_while_idle=true, time_to_live=5) Note: For more information, see Lifetime of a Message and Sending a downstream message docs. 2.1 Multicast message django-gcm supports sending message to multiple devices at once. E.g.: from gcm.models import get_device_model Device = get_device_model() Device.objects.all().send_message('my message') 5
10 django-gcm Documentation, Release Chapter 2. Sending messages
11 CHAPTER 3 Signals gcm.signals.device_registered Sent when a device is registered. Provides the following arguments: sender The resource class used to register the device. device An instance of gcm.models.device (see Extending device model) represents the registered device. request The HttpRequest in which the device was registered. gcm.signals.device_unregistered Sent when a device is unregistered. Provides the following arguments: sender The resource class used to unregister the device. device An instance of gcm.models.device (see Extending device model) represents the unregistered device. request The HttpRequest in which the device was unregistered. 7
12 django-gcm Documentation, Release Chapter 3. Signals
13 CHAPTER 4 Extending device model Allows you to store additional data in the device model (e.g. foreign key to the user) 4.1 Device model In your application, you need to create your own Device model. This model has to inherit from gcm.models.abstractdevice. # import the AbstractDevice class to inherit from from gcm.models import AbstractDevice class MyDevice(AbstractDevice): pass 4.2 Use your model In the end, you have to inform django-gcm where it can find your model. Add appropriate path to the settings.py file: GCM_DEVICE_MODEL = 'your_app.models.mydevice' 9
14 django-gcm Documentation, Release Chapter 4. Extending device model
15 CHAPTER 5 Api key authentication Allows you to manage access to the GCM api using one of the available tastypie authentication methods - ApiKeyAuthentication. Note: I strongly recommend see django-tastypie Authentication docs. Adding authentication requires tastypie added to your INSTALLED_APPS in the settings.py file: INSTALLED_APPS = [... 'gcm', 'tastypie', ] 5.1 Adding user field You need to extend Device model and add user field. (See Extending device model) # your_app/models.py from django.conf import settings from django.db import models from gcm.models import AbstractDevice class MyDevice(AbstractDevice): user = models.foreignkey(settings.auth_user_model) Add appropriate path to the settings.py file: GCM_DEVICE_MODEL = 'your_app.models.mydevice' 5.2 Resource class In your application, you need to create your own Resource class. It has to inherit from gcm.resources.deviceresource. # your_app/resources.py from gcm.resources import DeviceResource from tastypie.authentication import ApiKeyAuthentication 11
16 django-gcm Documentation, Release class AuthResource(DeviceResource): class Meta(DeviceResource.Meta): authentication = ApiKeyAuthentication() def get_queryset(self): qs = super(authresource, self).get_queryset() # to make sure that user can update only his own devices return qs.filter(user=self.request.user) def form_valid(self, form): form.instance.user = self.request.user return super(authresource, self).form_valid(form) You need to hook your resource class up in your urls.py file: # your_app/urls.py from django.conf.urls import patterns, include, url from tastypie.api import Api from.resources import AuthResource gcm_api = Api(api_name='v1') gcm_api.register(authresource()) urlpatterns = patterns('', url(r'^gcm/', include(gcm_api.urls)), ) Include your urls.py file in the main URL router: # urls.py from django.conf.urls import include, patterns, url urlpatterns = patterns('', url(r'', include('your_app.urls')), ) Note: See an example project gcm/example/apikeyauth_project 12 Chapter 5. Api key authentication
17 Python Module Index g gcm.signals, 7 13
18 django-gcm Documentation, Release Python Module Index
19 Index D device_registered (in module gcm.signals), 7 device_unregistered (in module gcm.signals), 7 G gcm.signals (module), 7 15
Django Two-Factor Authentication Documentation
Django Two-Factor Authentication Documentation Release 1.3.1 Bouke Haarsma April 05, 2016 Contents 1 Requirements 3 1.1 Django.................................................. 3 1.2 Python..................................................
Django on AppEngine Documentation
Django on AppEngine Documentation Release Sebastian Pawluś October 18, 2014 Contents 1 Installation 3 1.1 Download latest Google AppEngine SDK................................ 3 1.2 Install Django..............................................
latest Release 0.2.6
latest Release 0.2.6 August 19, 2015 Contents 1 Installation 3 2 Configuration 5 3 Django Integration 7 4 Stand-Alone Web Client 9 5 Daemon Mode 11 6 IRC Bots 13 7 Bot Events 15 8 Channel Events 17 9
Nupic Web Application development
Nupic Web Application development Contents Focus in... 1 Why to build a Web Application?... 1 The common data flow schema... 1 Tools... 2 Preparations... 2 Download/Install Django... 2 Check if Django
Introduction to FreeNAS development
Introduction to FreeNAS development John Hixson [email protected] ixsystems, Inc. Abstract FreeNAS has been around for several years now but development on it has been by very few people. Even with corporate
Rapid Website Deployment With Django, Heroku & New Relic
TUTORIAL Rapid Website Deployment With Django, Heroku & New Relic by David Sale Contents Introduction 3 Create Your Website 4 Defining the Model 6 Our Views 7 Templates 7 URLs 9 Deploying to Heroku 10
SagePay payment gateway package for django-oscar Documentation
SagePay payment gateway package for django-oscar Documentation Release 0.1.1 Glyn Jackson October 10, 2014 Contents 1 Installation and Configuration Guide 3 1.1 Installing Package............................................
Slides from INF3331 lectures - web programming in Python
Slides from INF3331 lectures - web programming in Python Joakim Sundnes & Hans Petter Langtangen Dept. of Informatics, Univ. of Oslo & Simula Research Laboratory October 2013 Programming web applications
The Django web development framework for the Python-aware
The Django web development framework for the Python-aware Bill Freeman PySIG NH September 23, 2010 Bill Freeman (PySIG NH) Introduction to Django September 23, 2010 1 / 18 Introduction Django is a web
depl Documentation Release 0.0.1 depl contributors
depl Documentation Release 0.0.1 depl contributors December 19, 2013 Contents 1 Why depl and not ansible, puppet, chef, docker or vagrant? 3 2 Blog Posts talking about depl 5 3 Docs 7 3.1 Installation
Django FTP server Documentation
Django FTP server Documentation Release 0.3.5 Shinya Okano May 12, 2016 Contents 1 Overview 3 1.1 Origin................................................... 3 1.2 Getting Started..............................................
django-cron Documentation
django-cron Documentation Release 0.3.5 Tivix Inc. September 28, 2015 Contents 1 Introduction 3 2 Installation 5 3 Configuration 7 4 Sample Cron Configurations 9 4.1 Retry after failure feature........................................
Django Mail Queue Documentation
Django Mail Queue Documentation Release 2.3.0 Derek Stegelman May 21, 2016 Contents 1 Quick Start Guide 3 1.1 Requirements............................................... 3 1.2 Installation................................................
Django FTP Deploy Documentation
Django FTP Deploy Documentation Release 2.0 Lukasz Pakula November 12, 2014 Contents 1 User Guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................
Django MSSQL Documentation
Django MSSQL Documentation Release dev Django MSSQL authors April 25, 2012 CONTENTS i ii Provides an ADO based Django database backend for Microsoft SQL Server. CONTENTS 1 2 CONTENTS CHAPTER ONE WELCOME
Introduction to web development with Python and Django Documentation
Introduction to web development with Python and Django Documentation Release 0.1 Greg Loyse August 22, 2014 Contents 1 Introduction 3 1.1 The Internet............................................... 3
django-helpdesk Documentation
django-helpdesk Documentation Release 0.1 Ross Poulton + Contributors May 18, 2016 Contents 1 Contents 3 1.1 License.................................................. 3 1.2 Installation................................................
Effective Django. Build 2015.10.18. Nathan Yergler
Effective Django Build 2015.10.18 Nathan Yergler 18 October 2015 CONTENTS 1 Getting Started 3 1.1 Your Development Environment..................................... 3 1.2 Setting Up Your Environment......................................
django_saas Documentation
django_saas Documentation Release 0.2.3 DjaoDjin inc. Jun 26, 2016 Contents 1 Getting started 3 2 The Subscription Cycle 7 3 Placing on Order 9 4 Django Views 11 5 Transactions 13 6 Database Models 19
Using Python, Django and MySQL in a Database Course
Using Python, Django and MySQL in a Database Course Thomas B. Gendreau Computer Science Department University of Wisconsin - La Crosse La Crosse, WI 54601 [email protected] Abstract Software applications
Introduction to Django Web Framework
Introduction to Django Web Framework Web application development seminar, Fall 2007 Jaakko Salonen Jukka Huhtamäki 1 http://www.djangoproject.com/ Django
Django Web Framework. Zhaojie Zhang CSCI5828 Class Presenta=on 03/20/2012
Django Web Framework Zhaojie Zhang CSCI5828 Class Presenta=on 03/20/2012 Outline Web frameworks Why python? Why Django? Introduc=on to Django An example of Django project Summary of benefits and features
Django MSSQL Documentation
Django MSSQL Documentation Release dev Django MSSQL authors October 09, 2012 CONTENTS 1 Welcome to Django-mssql s documentation! 3 1.1 Quickstart................................................ 3 1.2
DevKey Documentation. Release 0.1. Colm O Connor
DevKey Documentation Release 0.1 Colm O Connor March 23, 2015 Contents 1 Quickstart 3 2 FAQ 5 3 Release Notes 7 i ii DevKey Documentation, Release 0.1 Github PyPI Contents 1 DevKey Documentation, Release
DjNRO Release 0.9 July 14, 2015
DjNRO Release 0.9 July 14, 2015 Contents 1 About 3 2 Features 5 3 Requirements 7 3.1 Required Packages............................................ 7 4 Installation 9 4.1 Installation/Configuration........................................
django-project-portfolio Documentation
django-project-portfolio Documentation Release 1.2 James Bennett June 05, 2016 Contents 1 Documentation contents 3 Python Module Index 9 i ii django-project-portfolio is a simple Django application for
Test-Driven Development with Python
Test-Driven Development with Python Test-Driven Development with Python by Revision History for the : See http://oreilly.com/catalog/errata.csp?isbn= for release details. Table of Contents Preface.......................................................................
GCM for Android Setup Guide
GCM for Android Setup Guide This guide provides information on...... Prerequisites for using Google Cloud Messaging service... Instructions for setting up GCM service via the Google API console... Configuring
Flask-SSO Documentation
Flask-SSO Documentation Release 0.3.0 CERN July 30, 2015 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................
Django tutorial. October 22, 2010
Django tutorial October 22, 2010 1 Introduction In this tutorial we will make a sample Django application that uses all the basic Django components: Models, Views, Templates, Urls, Forms and the Admin
Absorb Single Sign-On (SSO) V3.0
Absorb Single Sign-On (SSO) V3.0 Overview Absorb allows single sign-on (SSO) with third-party systems, regardless of the programming language. SSO is made secure by a series of calls (between Absorb and
Python Cryptography & Security. José Manuel Ortega @jmortegac
Python Cryptography & Security José Manuel Ortega @jmortegac https://speakerdeck.com/jmortega Security Conferences INDEX 1 Introduction to cryptography 2 PyCrypto and other libraries 3 Django Security
Satchmo Documentation
Satchmo Documentation Release 0.9.3-Dev Chris Moffitt September 19, 2014 Contents 1 Overview 3 1.1 Satchmo Introduction.......................................... 3 1.2 About this Project............................................
Mobile Push Architectures
Praktikum Mobile und Verteilte Systeme Mobile Push Architectures Prof. Dr. Claudia Linnhoff-Popien Michael Beck, André Ebert http://www.mobile.ifi.lmu.de WS 2015/2016 Asynchronous communications How to
Web Application Frameworks. Robert M. Dondero, Ph.D. Princeton University
Web Application Frameworks Robert M. Dondero, Ph.D. Princeton University 1 Objectives You will learn about: The Django web app framework Other MVC web app frameworks (briefly) Other web app frameworks
The HTTP Plug-in. Table of contents
Table of contents 1 What's it for?... 2 2 Controlling the HTTPPlugin... 2 2.1 Levels of Control... 2 2.2 Importing the HTTPPluginControl...3 2.3 Setting HTTPClient Authorization Module... 3 2.4 Setting
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
django-rest-auth Documentation
django-rest-auth Documentation Release 0.3.0 Tivix Inc. July 28, 2016 Contents 1 Contents 3 1.1 Introduction............................................... 3 1.2 Installation................................................
Module - Facebook PS Connect
Module - Facebook PS Connect Operation Date : October 10 th, 2013 Business Tech Installation & Customization Service If you need assistance, we can provide you a full installation and customization service
Subversion Server for Windows
Subversion Server for Windows VisualSVN Team VisualSVN Server: Subversion Server for Windows VisualSVN Team Copyright 2005-2008 VisualSVN Team Windows is a registered trademark of Microsoft Corporation.
i5k_doc Documentation
i5k_doc Documentation Release 1.0 Fish Lin June 27, 2016 Table of Contents 1 Pre-requeisites 3 1.1 Python modules............................................. 3 1.2 Service-side pre-requisites........................................
Connecting to the Firewall Services Module and Managing the Configuration
CHAPTER 3 Connecting to the Firewall Services Module and This chapter describes how to access the command-line interface and work with the configuration. This chapter includes the following sections: Connecting
Whisler 1 A Graphical User Interface and Database Management System for Documenting Glacial Landmarks
Whisler 1 A Graphical User Interface and Database Management System for Documenting Glacial Landmarks Whisler, Abbey, Paden, John, CReSIS, University of Kansas [email protected] Abstract The Landmarks
Table of Contents. Table of Contents
Table of Contents Table of Contents Chapter 1: Introduction to Django... 6 What Is a Web Framework?... 6 The MVC Design Pattern... 7 Django s History... 8 How to Read This Book... 9 Chapter 2: Getting
Memopol Documentation
Memopol Documentation Release 1.0.0 Laurent Peuch, Mindiell, Arnaud Fabre January 26, 2016 Contents 1 User guide 3 1.1 Authentication in the admin backend.................................. 3 1.2 Managing
www.store.belvg.com skype ID: store.belvg email: [email protected] US phone number: +1-424-253-0801
1 Table of Contents Table of Contents: 1. Introduction to Google+ All in One... 3 2. How to Install... 4 3. How to Create Google+ App... 5 4. How to Configure... 8 5. How to Use... 13 2 Introduction to
Outline. Lecture 18: Ruby on Rails MVC. Introduction to Rails
Outline Lecture 18: Ruby on Rails Wendy Liu CSC309F Fall 2007 Introduction to Rails Rails Principles Inside Rails Hello World Rails with Ajax Other Framework 1 2 MVC Introduction to Rails Agile Web Development
How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2
èè How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 Table of Contents 1. General overview... 3 1.1. Installing the plugin... 3 1.2. Testing the plugin with the
Administering Jive Mobile Apps
Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Native Apps and Push Notifications...4 Custom App Wrapping for ios... 5 Native
TEST AUTOMATION FRAMEWORK
TEST AUTOMATION FRAMEWORK Twister Topics Quick introduction Use cases High Level Description Benefits Next steps Twister How to get Twister is an open source test automation framework. The code, user guide
KonyOne Server Installer - Linux Release Notes
KonyOne Server Installer - Linux Release Notes Table of Contents 1 Overview... 3 1.1 KonyOne Server installer for Linux... 3 1.2 Silent installation... 4 2 Application servers supported... 4 3 Databases
NGASI Universal APP Panel Administration and User Guide. 1999-2011 WebAppShowcase DBA NGASI
NGASI Universal APP Panel Administration and User Guide 2 Universal App Panel Table of Contents Part I Introduction 5 1 Overview... 5 2 Requirements... 5 Part II Administrator 8 1 Login... 8 2 Resellers/Webhosts...
flask-mail Documentation
flask-mail Documentation Release 0.9.1 Dan Jacob February 16, 2016 Contents 1 Links 3 2 Installing Flask-Mail 5 3 Configuring Flask-Mail 7 4 Sending messages 9 5 Bulk emails 11 6 Attachments 13 7 Unit
Use Enterprise SSO as the Credential Server for Protected Sites
Webthority HOW TO Use Enterprise SSO as the Credential Server for Protected Sites This document describes how to integrate Webthority with Enterprise SSO version 8.0.2 or 8.0.3. Webthority can be configured
Web Framework Performance Examples from Django and Rails
Web Framework Performance Examples from Django and Rails QConSF 9th November 2012 www.flickr.com/photos/mugley/5013931959/ Me Gareth Rushgrove Curate devopsweekly.com Blog at morethanseven.net Text Work
DRUPAL COMMERCE YELLOWCUBE CONNECTOR
Agile Web Development Liip.ch DRUPAL COMMERCE YELLOWCUBE CONNECTOR User Manual Version: 01.04.2015 1 TABLE OF CONTENTS ---- About ---- Installation ---- Requirements ---- Step-by-Step Instructions ----
AuShadha Documentation
AuShadha Documentation Release 0.1 Dr. Easwar T.R and others (see credits) October 17, 2015 Contents 1 Introduction to AuShadha Project 3 1.1 AuShadha (): Means medicine in Sanskrit................................
Integrity Checking and Monitoring of Files on the CASTOR Disk Servers
Integrity Checking and Monitoring of Files on the CASTOR Disk Servers Author: Hallgeir Lien CERN openlab 17/8/2011 Contents CONTENTS 1 Introduction 4 1.1 Background...........................................
Enhanced Password Security - Phase I
Enhanced Password Security - Phase I Feature History 120(18)S This feature was introduced This document describes the Enhanced Password Security feature in It includes the following sections: Feature Overview,
User Management Tool 1.6
User Management Tool 1.6 2014-12-08 23:32:48 UTC 2014 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents User Management Tool 1.6... 3 ShareFile User Management
vmprof Documentation Release 0.1 Maciej Fijalkowski, Antonio Cuni, Sebastian Pawlus
vmprof Documentation Release 0.1 Maciej Fijalkowski, Antonio Cuni, Sebastian Pawlus January 23, 2016 Contents 1 Introduction 1 1.1 Requirements............................................... 1 1.2 Installation................................................
Magento OpenERP Integration Documentation
Magento OpenERP Integration Documentation Release 2.0dev Openlabs Technologies & Consulting (P) Limited September 11, 2015 Contents 1 Introduction 3 1.1 Installation................................................
Note: This App is under development and available for testing on request. Note: This App is under development and available for testing on request. Note: This App is under development and available for
Web [Application] Frameworks
Web [Application] Frameworks conventional approach to building a web service write ad hoc client code in HTML, CSS, Javascript,... by hand write ad hoc server code in [whatever] by hand write ad hoc access
socketio Documentation
socketio Documentation Release 0.1 Miguel Grinberg January 17, 2016 Contents 1 What is Socket.IO? 3 2 Getting Started 5 3 Rooms 7 4 Responses 9 5 Callbacks 11 6 Namespaces 13 7 Using a Message Queue 15
Authentic2 Documentation
Authentic2 Documentation Release 2.0.2 Entr ouvert May 11, 2012 CONTENTS 1 Documentation content 3 1.1 Features.................................................. 3 1.2 Installation................................................
Using Toaster in a Production Environment
Using Toaster in a Production Environment Alexandru Damian, David Reyna, Belén Barros Pena Yocto Project Developer Day ELCE 17 Oct 2014 Introduction Agenda: What is Toaster Toaster out of the box Toaster
SSC - Communication and Networking Java Socket Programming (II)
SSC - Communication and Networking Java Socket Programming (II) Shan He School for Computational Science University of Birmingham Module 06-19321: SSC Outline Outline of Topics Multicast in Java User Datagram
Managing Qualys Scanners
Q1 Labs Help Build 7.0 Maintenance Release 3 [email protected] Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access
WHMCS LUXCLOUD MODULE
èè WHMCS LUXCLOUD MODULE Update: 02.02.2015 Version 2.0 This information is only valid for partners who use the WHMCS module (v2.0 and higher). 1.1 General overview 1.2 Installing the plugin Go to your
Web Frameworks. web development done right. Course of Web Technologies A.A. 2010/2011 Valerio Maggio, PhD Student Prof.
Web Frameworks web development done right Course of Web Technologies A.A. 2010/2011 Valerio Maggio, PhD Student Prof.ssa Anna Corazza Outline 2 Web technologies evolution Web frameworks Design Principles
TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER. Configuring your Update Server
TECHNICAL NOTE SETTING UP A STRM UPDATE SERVER AUGUST 2012 STRM uses system configuration files to provide useful characterizations of network data flows. Updates to the system configuration files, available
Creating a DUO MFA Service in AWS
Amazon AWS is a cloud based development environment with a goal to provide many options to companies wishing to leverage the power and convenience of cloud computing within their organisation. In 2013
Email DLP Quick Start
1 Email DLP Quick Start TRITON - Email Security is automatically configured to work with TRITON - Data Security. The Email Security module registers with the Data Security Management Server when you install
Pronestor Room & Catering
Pronestor Room & Catering Module 2 Installation of additional modules Page 2.0 2.9 User import (AD integration) Page 2.1 2.4 o Service Accounts (hosted and on-premises) o Active Directory Structure o Installation
NetIQ Advanced Authentication Framework. FIDO U2F Authentication Provider Installation Guide. Version 5.1.0
NetIQ Advanced Authentication Framework FIDO U2F Authentication Provider Installation Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 System Requirements
INSTALLATION GUIDE El Jefe 2.1 Document version: June 2014
INSTALLATION GUIDE El Jefe 2.1 Document version: June 2014 Contents 1 Goal of this Document...3 2 Introduction...3 3 Installation...4 3.1 El Jefe 2.1 Installation on Ubuntu 13.04 LTS...4 3.2 El Jefe 2.1
Python and Google App Engine
Python and Google App Engine Dan Sanderson June 14, 2012 Google App Engine Platform for building scalable web applications Built on Google infrastructure Pay for what you use Apps, instance hours, storage,
Step 2. Choose security level Step 2 of 3
Quickstart Guide Unique Entry Get it Now Unique Entry is installed quickly and easily from the AppExchange via the Get it Now button. During the installation wizard, you must make sure you grant access
1 Overview 1 1.1 Configuration on MACH Web Portal 1
API Guide Version 2 Table of Content 1 Overview 1 1.1 Configuration on MACH Web Portal 1 1.2 Other Pre-requisites 1 1.2.1 Apple Push SSL Certificate 1 1.2.2 Android GCM Key 2 1.2.3 Enabling Push Notification
Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions
Customize Mobile Apps with MicroStrategy SDK: Custom Security, Plugins, and Extensions MicroStrategy Mobile SDK 1 Agenda MicroStrategy Mobile SDK Overview Requirements & Setup Custom App Delegate Custom
Workspot Configuration Guide for the Cisco Adaptive Security Appliance
Workspot Configuration Guide for the Cisco Adaptive Security Appliance Workspot, Inc. 1/27/2015 Cisco ASA and Workspot Overview The Cisco Adaptive Security Appliance (ASA) provides organizations with secure,
Conference Controller Deployment Guide
Conference Controller Deployment Guide BES 5.0/May 2014 Page 2 of 7 1. Introduction This document outlines the processes for wirelessly deploying the LoopUp Conference Controller for BlackBerry to users
SMSNotify Extension. User Documentation. Automated SMS sender and customer relationship tool. SMSNotify User Documentation 1
SMSNotify Extension User Documentation Automated SMS sender and customer relationship tool SMSNotify User Documentation 1 Contents: 1. Extension overview and features... 3 2. Installation process... 4
introducing The BlackBerry Collaboration Service
Introducing the Collaboration Service 10.2 for the Enterprise IM app 3.1 introducing The Collaboration Service Sender Instant Messaging Server Collaboration Service 10 device Recipient V. 1.0 June 2013
Certified The Grinder Testing Professional VS-1165
Certified The Grinder Testing Professional VS-1165 Certified The Grinder Testing Professional Certified The Grinder Testing Professional Certification Code VS-1165 Vskills certification for The Grinder
Application Note VAST Network settings
VAST Network settings www.vivotek.com 2010 VIVOTEK Inc. All Right Reserved VIVOTEK may make changes to specifications and product descriptions at any time, without notice. The following is trademarks of
MyMoney Documentation
MyMoney Documentation Release 1.0 Yannick Chabbert June 20, 2016 Contents 1 Contents 3 1.1 Installation................................................ 3 1.1.1 Requirements..........................................
Security IIS Service Lesson 6
Security IIS Service Lesson 6 Skills Matrix Technology Skill Objective Domain Objective # Configuring Certificates Configure SSL security 3.6 Assigning Standard and Special NTFS Permissions Enabling and
Central Administration QuickStart Guide
Central Administration QuickStart Guide Contents 1. Overview... 2 Licensing... 2 Documentation... 2 2. Configuring Central Administration... 3 3. Using the Central Administration web console... 4 Managing
OpenShift on you own cloud. Troy Dawson OpenShift Engineer, Red Hat [email protected] November 1, 2013
OpenShift on you own cloud Troy Dawson OpenShift Engineer, Red Hat [email protected] November 1, 2013 2 Infrastructure-as-a-Service Servers in the Cloud You must build and manage everything (OS, App Servers,
Django-nonrel Documentation
Django-nonrel Documentation Release 0 Tom Brander October 18, 2015 Contents 1 Django-nonrel - NoSQL support for Django 3 1.1 Why Django on NoSQL......................................... 3 1.2 Documentation..............................................
Learn More MaaS360 Cloud Extender Checklist (MDM for Blackberry)
Learn More MaaS360 Cloud Extender Checklist (MDM for Blackberry) June 2011 Copyright 2011 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without
Install Unique Entry: As -You-Type Duplicate Prevention. No Duplicates.
Quickstart Guide Unique Entry Get it Now Unique Entry is installed quickly and easily from the AppExchange via the Get it Now button. During the installation wizard, you must make sure you grant access
TaxonHub Client. What is Taxon? TaxonHub Client. The Open Source project. suggest-term. admin. Strategy for version numbers
Table of Contents TaxonHub Client... 2 What is Taxon?... 2 TaxonHub Client... 2 suggest-term... 2 admin... 2 The Open Source project...2 Strategy for version numbers...2 Installing the TaxonHub Client...4
