-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChatAppsFormat.tex
1204 lines (826 loc) · 102 KB
/
ChatAppsFormat.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[notoc, symmetric, nobib, nols]{towcenter-guideto-book}
\hypersetup{colorlinks, hyperfootnotes=true}% uncomment this line if you prefer colored hyperlinks (e.g., for onscreen viewing)
%uncomment to remove hyperlinks for Lulu upload
%\hypersetup{draft}
% creating an "ignore" command to deal with emdash problem & comments in general
\newcommand{\ignore}[1]{}
\widowpenalty=10000
\usepackage[T1]{fontenc}
\usepackage[at]{easylist}
%\usepackage[utf8]{inputenc}
\usepackage{textcomp}
\usepackage[american]{babel}
\usepackage[autostyle]{csquotes}
\usepackage{endnotes}
\usepackage[strict]{changepage}
\usepackage{enumitem}
\setlist{noitemsep}
\usepackage{wrapfig}
\usepackage[notes15,strict,backend=biber,autolang=other,%
bibencoding=latin1,notetype=endonly,ibidtracker=constrict]{biblatex-chicago}
\bibliography{ChatAppsCitations.bib}
%\addbibresource{ChatAppsReadings.bib}
\usepackage{ifthen}
\usepackage{setspace}
\renewcommand*{\biburlsetup}{%
\Urlmuskip=0mu plus 2mu\relax
\mathchardef\UrlBreakPenalty=200\relax
\mathchardef\UrlBigBreakPenalty=100\relax
\mathchardef\UrlEmergencyPenalty=9000\relax
\appto\UrlSpecials{%
\do\0{\mathchar`\0\penalty\UrlEmergencyPenalty}%
\do\1{\mathchar`\1\penalty\UrlEmergencyPenalty}%
\do\2{\mathchar`\2\penalty\UrlEmergencyPenalty}%
\do\3{\mathchar`\3\penalty\UrlEmergencyPenalty}%
\do\4{\mathchar`\4\penalty\UrlEmergencyPenalty}%
\do\5{\mathchar`\5\penalty\UrlEmergencyPenalty}%
\do\6{\mathchar`\6\penalty\UrlEmergencyPenalty}%
\do\7{\mathchar`\7\penalty\UrlEmergencyPenalty}%
\do\8{\mathchar`\8\penalty\UrlEmergencyPenalty}%
\do\9{\mathchar`\9\penalty\UrlEmergencyPenalty}}%
\def\UrlBreaks{%
\do\.\do\@\do\/\do\\\do\!\do\_\do\|\do\;\do\>\do\]\do\)\do\}%
\do\,\do\?\do\'\do\+\do\=\do\#\do\$\do\&\do\*\do\^\do\"}%
\def\UrlBigBreaks{\do\:\do\-}}
\usepackage{url}
%\setcounter{biburllcpenalty}{7000}
%\setcounter{biburlucpenalty}{8000}
\urlstyle{rm}
\appto\bibsetup{\sloppy}
%\appto\biburlsetup{\Urlmuskip=0mu plus 4mu\relax}
\setlength{\dimen\footins}{9.5in}
\renewcommand{\notesname}{}
\geometry{a5paper,left=0.6in,right=0.6in,top=0.6875in,headsep=\baselineskip,
textwidth=4.4in,textheight=6.83in,headheight=\baselineskip,marginparwidth
=.1in, marginparsep=0.1in}
%\geometry{a5paper,left=13mm,top=15mm,headsep=1\baselineskip,textwidth=
%122mm,textheight=185mm,headheight=\baselineskip,marginparwidth=10mm,
%marginparsep=5mm}
%%
% Adding setspace to tighten leading on margin notes
\usepackage{setspace}
%%
% Adding back marginnote functionality that I've stripped from tufte-common.def in the process of creating towcenter-common.def
\usepackage{marginnote}
\renewcommand{\marginnote}[1]{{\marginpar{\raggedright\footnotesize
\setstretch{1.025}%
#1}}}
%%
% Setting the footnote style to roman numerals in this case
\renewcommand{\thefootnote}{\roman{footnote}}
% more on bullet positioning: http://tex.stackexchange.com/questions/78167/indentation-within-an-itemized-list
% \setlist[itemize,1]{leftmargin=\dimexpr 26pt-.5in}
%%
% Resetting the footnote counter every page for clarity (I think)
%\usepackage{perpage} %the perpage package
%\MakePerPage{footnote} %the perpage package command
%%
% Resetting footnote counters every section?!
\makeatletter
\@addtoreset{footnote}{section}
\makeatother
%%
% Book metadata
\title{Chat Apps Tow Center printed report}
\author{Trushar Barot and Eytan Oren}
\publisher{Tow Center for Digital Journalism}
% use fontspec package and set titles to Georgia
\usepackage{fontspec}
\newfontfamily\titlefont{Times}
\newfontfamily\towknightfont{News Gothic MT}
%\newfontfamily\bodyfont{Caslon Regular}
\newfontfamily\frankmedium{Franklin Gothic Medium}
%\newfontfamily\frankregular{Franklin Gothic Regular}
%\newfontfamily\frankdemi{Franklin Gothic Demi}
%\setmainfont{Caslon Regular}
% add color package and define appropriate blues for title page
\usepackage{color}
\definecolor{darkblue}{RGB}{30,69,132}
\definecolor{lightblue}{RGB}{154,196,219}
% framed helps with graphics
\usepackage{framed}
% suppresses names and figure numbers on graphics
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@caption}
{\noindent\csname fnum@#1\endcsname: \ignorespaces}
{}
{}{}
\makeatother
%%
% Just some sample text
\usepackage{lipsum}
%%
% For nicely typeset tabular material
\usepackage{booktabs}
%%
% For graphics / images
\usepackage{graphicx}
\setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio}
\graphicspath{{graphics/}}
% The fancyvrb package lets us customize the formatting of verbatim
% environments. We use a slightly smaller font.
\usepackage{fancyvrb}
\fvset{fontsize=\normalsize}
%%
% Prints argument within hanging parentheses (i.e., parentheses that take
% up no horizontal space). Useful in tabular environments.
\newcommand{\hangp}[1]{\makebox[0pt][r]{(}#1\makebox[0pt][l]{)}}
%%
% Prints an asterisk that takes up no horizontal space.
% Useful in tabular environments.
\newcommand{\hangstar}{\makebox[0pt][l]{*}}
%%
% Prints a trailing space in a smart way.
\usepackage{xspace}
% Prints the month name (e.g., January) and the year (e.g., 2008)
\newcommand{\monthyear}{%
\ifcase\month\or January\or February\or March\or April\or May\or June\or
July\or August\or September\or October\or November\or
December\fi\space\number\year
}
% Prints an epigraph and speaker in sans serif, all-caps type.
\newcommand{\openepigraph}[2]{%
%\sffamily\fontsize{14}{16}\selectfont
\begin{fullwidth}
\sffamily\large
\begin{doublespace}
\noindent\allcaps{#1}\\% epigraph
\noindent\allcaps{#2}% author
\end{doublespace}
\end{fullwidth}
}
% Inserts a blank page
\newcommand{\blankpage}{\newpage\hbox{}\thispagestyle{empty}\newpage}
\usepackage{units}
% Typesets the font size, leading, and measure in the form of 10/12x26 pc.
\newcommand{\measure}[3]{#1/#2$\times$\unit[#3]{pc}}
% Macros for typesetting the documentation
\newcommand{\hlred}[1]{\textcolor{Maroon}{#1}}% prints in red
\newcommand{\hangleft}[1]{\makebox[0pt][r]{#1}}
\newcommand{\hairsp}{\hspace{1pt}}% hair space
\newcommand{\hquad}{\hskip0.5em\relax}% half quad space
\newcommand{\TODO}{\textcolor{red}{\bf TODO!}\xspace}
\newcommand{\ie}{\textit{i.\hairsp{}e.}\xspace}
\newcommand{\eg}{\textit{e.\hairsp{}g.}\xspace}
\newcommand{\na}{\quad--}% used in tables for N/A cells
\providecommand{\XeLaTeX}{X\lower.5ex\hbox{\kern-0.15em\reflectbox{E}}\kern-0.1em\LaTeX}
\newcommand{\tXeLaTeX}{\XeLaTeX\index{XeLaTeX@\protect\XeLaTeX}}
% \index{\texttt{\textbackslash xyz}@\hangleft{\texttt{\textbackslash}}\texttt{xyz}}
\newcommand{\towcenterbs}{\symbol{'134}}% a backslash in tt type in OT1/T1
\newcommand{\doccmdnoindex}[2][]{\texttt{\towcenterbs#2}}% command name -- adds backslash automatically (and doesn't add cmd to the index)
\newcommand{\doccmddef}[2][]{%
\hlred{\texttt{\towcenterbs#2}}\label{cmd:#2}%
\ifthenelse{\isempty{#1}}%
{% add the command to the index
\index{#2 command@\protect\hangleft{\texttt{\towcenterbs}}\texttt{#2}}% command name
}%
{% add the command and package to the index
\index{#2 command@\protect\hangleft{\texttt{\towcenterbs}}\texttt{#2} (\texttt{#1} package)}% command name
\index{#1 package@\texttt{#1} package}\index{packages!#1@\texttt{#1}}% package name
}%
}% command name -- adds backslash automatically
\newcommand{\doccmd}[2][]{%
\texttt{\towcenterbs#2}%
\ifthenelse{\isempty{#1}}%
{% add the command to the index
\index{#2 command@\protect\hangleft{\texttt{\towcenterbs}}\texttt{#2}}% command name
}%
{% add the command and package to the index
\index{#2 command@\protect\hangleft{\texttt{\towcenterbs}}\texttt{#2} (\texttt{#1} package)}% command name
\index{#1 package@\texttt{#1} package}\index{packages!#1@\texttt{#1}}% package name
}%
}% command name -- adds backslash automatically
\newcommand{\docopt}[1]{\ensuremath{\langle}\textrm{\textit{#1}}\ensuremath{\rangle}}% optional command argument
\newcommand{\docarg}[1]{\textrm{\textit{#1}}}% (required) command argument
\newenvironment{docspec}{\begin{quotation}\ttfamily\parskip0pt\parindent0pt\ignorespaces}{\end{quotation}}% command specification environment
\newcommand{\docenv}[1]{\texttt{#1}\index{#1 environment@\texttt{#1} environment}\index{environments!#1@\texttt{#1}}}% environment name
\newcommand{\docenvdef}[1]{\hlred{\texttt{#1}}\label{env:#1}\index{#1 environment@\texttt{#1} environment}\index{environments!#1@\texttt{#1}}}% environment name
\newcommand{\docpkg}[1]{\texttt{#1}\index{#1 package@\texttt{#1} package}\index{packages!#1@\texttt{#1}}}% package name
\newcommand{\doccls}[1]{\texttt{#1}}% document class name
\newcommand{\docclsopt}[1]{\texttt{#1}\index{#1 class option@\texttt{#1} class option}\index{class options!#1@\texttt{#1}}}% document class option name
\newcommand{\docclsoptdef}[1]{\hlred{\texttt{#1}}\label{clsopt:#1}\index{#1 class option@\texttt{#1} class option}\index{class options!#1@\texttt{#1}}}% document class option name defined
\newcommand{\docmsg}[2]{\bigskip\begin{fullwidth}\noindent\ttfamily#1\end{fullwidth}\medskip\par\noindent#2}
\newcommand{\docfilehook}[2]{\texttt{#1}\index{file hooks!#2}\index{#1@\texttt{#1}}}
\newcommand{\doccounter}[1]{\texttt{#1}\index{#1 counter@\texttt{#1} counter}}
\hyphenation{Whats-App}
\hyphenation{Buzz-Feed}
% Generates the index
\usepackage{makeidx}
\makeindex
\begin{document}
% Front matter
\frontmatter
% r.1 blank page
\blankpage
% r.3 full title page
%\maketitle
%Using minipages to mimic existing layout for title page
%\cleardoublepage
\begin{figure}
\centering
\makebox[0pt][c]{%
\begin{minipage}[t][1\textheight]{0.2\textwidth}
\vspace{0pt}
\vfill
\includegraphics[width=.6\textwidth]{graphics/ColumbiaLogo.pdf}
\end{minipage}
\hfill
\begin{minipage}[t][1\textheight]{0.80\textwidth}
\vspace{0pt}
\begin{flushleft}
%\textcolor{darkblue}{\towknightfont{\fontsize{30}{30}\selectfont Guide to}}
\textcolor{lightblue}{\towknightfont{\fontsize{47}{47}\selectfont \textbf{Guide to}}}
\vspace{0.4in}
\textcolor{darkblue}{\textbf{\titlefont\fontsize{58}{58}\selectfont
Chat Apps}}
\vspace{2.9in}
\textcolor{darkblue}{\towknightfont{\fontsize{16}{16}\selectfont \textbf{Trushar Barot and Eytan Oren}}}
\vspace{1.45in}
\textcolor{darkblue}{\towknightfont{\fontsize{7}{-3}\selectfont Tow Center for Digital Journalism\hspace{0.3in}Funded by the Tow Foundation and the\\[-0.08in]A Tow/Knight Guide \hspace{0.88in}James S. and John L. Knight Foundation}}
\end{flushleft}
\end{minipage}%
}%
\end{figure}
\blankpage
\blankpage
% v.4 copyright page
\null
\begin{fullwidth}
\noindent\textsf{\textbf{Acknowledgments}} \\[0.3cm]
\noindent\textit{We would like to thank all the journalists and editors, as well as those representatives from various chat app companies, who spoke to us during the research phase of this report. We list many of them by name in a following chapter, but there were a number of others not mentioned specifically who contributed necessary background briefings and guidance. Many thanks, too, to Claire Wardle, Pete Brown, Elizabeth Boylan, and Abigail Ronck from the Tow Center for their help with feedback, logistics, and proofreading.
}\\[0.1cm]
\noindent\textit{\monthyear}
\end{fullwidth}
% r.5 contents
\tableofcontents
% r.7 introduction
\cleardoublepage
%%
% Start the main matter (normal chapters)
\mainmatter
\chapter{Executive Summary}
\blankpage
\noindent Messaging apps now have more global users than traditional social networks---which means they will play an increasingly important role in the distribution of digital journalism in the future. While chat platforms initially rose to prominence by offering a low-cost, web-based alternative to SMS, over time they evolved into multimedia hubs that support photos, videos, games, payments, and more.
While many news organizations don't yet use messaging apps, digitally savvy outlets like BuzzFeed, Mashable, The Huffington Post, and VICE have accompanied a more traditional player in BBC News by establishing a presence on a number of these platforms.
To complement our research, we interviewed leadership at multiple news outlets and chat platforms, thereby synthesizing key lessons and presenting notable case studies reflecting the variety of creative and strategic work taking place within the messaging space. Most publisher efforts around messaging apps are still in a formative, experimental stage, but even those have often proven effective in diversifying traffic sources for digital content.
Drawing upon our interviews and case studies, we identify a number of opportunities and challenges for organizations using---or hoping to use---messaging apps for news. We argue that to devise a successful messaging app strategy, publishers must understand regional strongholds, user demographics, and popular features of each app. Advantages to the chat ecosystem include huge, untapped audiences; high engagement through push notifications; unique products like stickers and ``chatbots'' (see glossary for definitions); and the opportunity to build community through chat rooms and crowdsourced storytelling. Meanwhile, challenges include limited analytics tools and a fragmented social landscape boasting roughly a dozen messaging apps, each with over 50 million registered users.
Our case studies illustrate a number of ways in which major news outlets have utilized various messaging apps, each with its own niche characteristics. In the past two years, many platforms---including Snapchat, Viber, Kik, LINE, WeChat, and Telegram---introduced official channels that publishers like CNN, \textit{The New York Times}, The Huffington Post, and Cliff Central now leverage for content distribution and user engagement. Other players like WhatsApp have no official offering for media owners, but this has not deterred organizations---most notably the BBC---from launching experimental campaigns.
Our research indicates that one of the greatest benefits of chat apps is the opportunity to use these platforms as live, sandbox environments. The chance to play and iterate has helped several news organizations develop mobile-first content and experiential offerings that would have proved difficult in other digital environments. As these services primarily---and in some cases exclusively---exist on mobile phones, editorial teams have learned to focus purely on the mobile experience, freeing themselves from considerations about how content will appear on desktop websites or other broadcast mediums.
As happened after the early days of social media, before which a proliferation of services (some with regional strengths) led to intense competition for user attention, we expect to see some eventual consolidation among chat apps. While Facebook Messenger and Skype do not garner much focus in this report, we believe they could become significant players in this space over the coming year as they figure out the right proposition for their platforms to partner with media organizations.
Elsewhere, we conclude that issues around information, privacy, personal security, and mobile data penetration will unfold in different ways around the world; apps like Telegram and FireChat are among those at the forefront of addressing and solving these problems. They, in conjunction with similar applications, are likely to see an increase in user uptake as they meet needs that other major chat apps are unable to serve.
In developing editorial strategies for some of these wide-ranging messaging platforms, news organizations are not just helping to future-proof themselves, they are also venturing into online spaces that could enable them to reach hundreds of millions of (often young) people with whom they have never engaged before.
\subsection{Key Observations}
The key findings of this report can be summarized as follows:
\begin{itemize}[itemsep=.5em]
\item Messaging apps offer strong opportunities to engage new or difficult-to-reach demographics. For example, Snapchat, a very popular app among millennials, has been credited with engaging and informing young audiences on complex issues like the Iran nuclear deal.
\item Innovations such as bespoke (or customized) stickers and emojis can help news outlets quickly build significant audiences via messaging apps.
\item Messaging apps enable news outlets to gather (potentially exclusive) user-generated content and can become a major source during breaking news situations (e.g., as in the BBC's coverage of the second Nepal earthquake in 2015).
\item News outlets may need to experiment with a variety of chat apps to decipher which content type best suits the audiences of each app. BuzzFeed, for example, had considerably more success using LINE for soft news than for hard news.
\item Messaging apps can provide unique opportunities for giving audiences direct access to content and publishers, be it through tailormade WeChat platforms (Cliff Central) or Public Chats on Viber (The Huffington Post).
\item Messaging apps provide a space for news outlets to engage their audiences with different---possibly lighter---types of content (e.g., \textit{The Washington Post} has used Kik to distribute games, quizzes, and chat adventures).
\item Even apps that are not as geared toward publishing as some of their competitors, such as WhatsApp, hold great potential for news outlets if used strategically.
\item Messaging apps not only facilitate communication with eyewitnesses in areas where other forms of communication aren't functioning (e.g., during extreme weather conditions), they can also provide a platform for people who don't feel safe speaking on the telephone. Additionally, apps such as Telegram focus strongly on encryption and security.
\item Messaging apps are not used solely to drive traffic to websites (e.g., BuzzFeed is using LINE as part of a more distributed strategy and aims to provide as much information as possible inside the app, rather than direct users to its website).
\item When sourcing user-generated content, apps like WhatsApp, which are tied to a user's phone number, can significantly speed up the verification process as they provide a direct line to the content creator/eyewitness.
\item Messaging apps are relatively new and evolving at a rapid pace. Consequently, many news outlets are still in the process of establishing strategies to best utilize these platforms.
\item There is emerging evidence that messaging apps may drive traffic back to outlets' other, more traditional platforms (e.g., CNN's Snapchat Discover drove people to seek out longer-form content on CNN's TV news channel).
\end{itemize}
\blankpage
\chapter[Introduction: The Dawn of the Social Messaging Era]{Introduction:\protect\newline The Dawn of the \protect\newline Social Messaging Era}
\blankpage
\noindent ``The social media phase of the Internet ended,'' declared Fred Wilson---a leading venture capitalist and early investor in Twitter, Foursquare, and Tumblr---in his 2014 ``What Just Happened?'' year-in-review. He continued:
\begin{quote}
Entrepreneurs and developers still build social applications. We still use them. But there isn't much innovation here anymore \ldots messaging is the new social media \ldots families use WhatsApp groups instead of Facebook. Kids use Snapchat instead of Instagram. Facebook's acquisition of WhatsApp in February of this year was the transaction that defined this trend.\autocite{AVCwhatjusthappened}
\end{quote}
\begin{figure}
\includegraphics[width=1\textwidth]{graphics/CHATAPPS_Page6_Chart.png}
\end{figure}
While Wilson's views may be surprising to some, statistics support them. Business Insider Intelligence released an infographic in April titled ``Messaging Apps Have Caught Up to Social Networks,'' indicating that major chat apps (WeChat, Viber, WhatsApp, and Facebook Messenger) now have more combined users than the top social networks (Twitter, LinkedIn, Facebook, and Instagram).\autocite{BIchatapps} And according to Mary Meeker's ``Internet Trends 2015'' report, messaging apps make up 60 percent of the top 10 global apps by both usage and number of sessions.\autocite{Meeker2015}
\newpage
Like any presumed overnight success, WhatsApp's rise was actually part of a broader movement that took years to coalesce within a zeitgeist moment. Facebook's \$22-billion purchase of the app merely marked the day that everyone, even those with limited interest in technology, learned that the era of social messaging had arrived.
Any user now downloading the world's 10 biggest chat apps for the first time may be struck by their similarities. Dig deeper into their histories, though, and you'll see that each company conquered the globe with one unique, core innovation before incorporating some of its competitors' strongest ideas: LINE popularized stickers, Viber perfected free mobile calling, Snapchat invented ephemeral messaging, Kik pioneered mobile chat anonymity, Telegram supplied chat encryption, Tango delivered mobile video chat, WhatsApp introduced the simplicity of free texting, and WeChat created the messaging app as mobile web portal. Facebook Messenger, for its part, forged an amalgam of all those apps, and now looks to differentiate itself with the introduction of M, an artificial intelligence chat assistant.
\section{Objectives and Methods}
In this guide, we explore the critical role chat apps can play in the distribution of digital journalism today and in the years ahead. As mobile traffic and referrals from social platforms continue to grow for the majority of news organizations, chat apps present a profound opportunity for audience development and engagement.
According to Pew Research Center's ``State of the News Media 2015'' report, 78 percent of the top 50 digital news websites receive more visits from mobile devices than desktop computers. And analytics firm Parse.ly, which delivers audience insights to over 400 news organizations including \textit{Wired}, \textit{The Atlantic}, and Reuters, claims 43 percent of referrals to its publisher network now come from social media (outpacing search at 38 percent).
Messaging has emerged as the new frontier of social on mobile, and the sheer size of audiences on the top global chat apps is too big to ignore. These apps also present an opportunity to diversify mobile traffic sources and to minimize vulnerability should Facebook or other platforms decrease traffic for publishers.
For our research, we conducted interviews with leadership at numerous major messaging app companies, as well as early-adopter news organizations. We selected companies and case studies that demonstrate the diversity of opportunities within the ecosystem, while also highlighting the uniqueness of each chat app platform.
While publishers generally indicated optimism and excitement for their work on chat apps, nearly all pointed out that as an industry we are still in an early, exploratory phase. Most major chat apps spent the last few years perfecting their user experience, only recently turning their attention to media-owner partnerships. With that in mind, we urge readers to not only learn from the case studies presented, but also to initiate experiments of their own to find the right strategy for any editorial team.
\section{A Brief History of Chat Apps}
Modern instant messaging and SMS both began their march to prominence in the early and mid-1990s. The difference between the two is subtle: SMS (the acronym for ``short service message'') allows mobile phone users to send each other text messages without an Internet connection, whereas instant messaging enables similar functionality via the web. The first SMS message was sent over the Vodafone GSM network in the United Kingdom on December 3, 1992, with the words ``Merry Christmas.'' Israeli firm Mirabilis released the first widely used online messenger, ICQ (short for ``I Seek You''), in 1996.
Precursors to ICQ date as far back as 1961 when MIT's Computation Center built the Compatible Time Sharing System (CTSS), allowing up to 30 users to log-in concurrently and share text messages. CompuServe's CB Simulator, released in 1980, is generally recognized as the first dedicated online chat service; it required users to pay monthly fees for membership.
In 1985, Commodore launched Quantum Link (or ``Q-Link''), an online service for Commodore 64 and 128 that enabled multi-person chat, file sharing, electronic email, games, and news via modem connection. Quantum Link changed its name to America Online (AOL) in 1991, and by the mid-90s was the leading U.S. Internet service provider and portal to the web.
The company launched AOL Instant Messenger (AIM) in 1997 and purchased competitor ICQ in 1998 to consolidate its primacy over instant messaging. Along with a few competitors, it also pioneered chat robots like StudyBuddy and SmarterChild that provided information and played games with users.
In 2006, AIM controlled 52 percent of the instant messaging market, but it struggled to monetize and went into rapid decline in the face of competition from services like Google Talk, Yahoo! Chat, MSN Messenger, and Skype. The growing popularity of BlackBerry Messenger in the late 2000s also pointed to a bright future for mobile messaging.
By the time mobile chat apps like WhatsApp and Kik arrived in 2009, SMS was king. Mobile texting became a key mode of global, personal communication, earning billions of dollars for telecommunications companies.
But time and technology did not prove kind to telephone-service companies. As smartphones began to proliferate, messaging apps were an increasingly accessible solution to a simple problem: SMS is expensive in most countries, so why not text or call much more cheaply, or for free, via the mobile web?
SMS volume peaked in 2012, and chat apps surpassed SMS in global message volume for the first time in 2013.\autocite{eMarketerSMS} By January 2015, WhatsApp alone hosted 30 billion messages per day compared to about 20 billion for SMS.\autocite{BenEvansWhatsApp}
As Wi-Fi and high-speed mobile networks hit critical mass in many markets, chat apps quickly became multimedia hubs where users could easily share videos, photos, stickers, games, articles, live streams, and more. Between 2013 and 2014, many messengers turned their attention to monetizing their massive audiences, and in doing so introduced tools for publishers and brands.
\newpage
\section[Facebook: A Company Reinvented for the Messaging Era]{Facebook: A Company Reinvented \protect\newline for the Messaging Era}
\begin{wrapfigure}{r}{0.5\textwidth}
\includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page9_Graph.png}
\end{wrapfigure}
With a mix of foresight and irony, Facebook founder Mark Zuckerberg has done more than most to close the era of social networking and usher in one of social messaging. In 2014, he placed two massive bets on messaging: a \$22-billion purchase of the world's leading chat app, WhatsApp, and a new requirement that Facebook users download a standalone Messenger app to converse with friends.
By September 2015, WhatsApp and Messenger had 1.6 billion active, monthly accounts combined---outpacing Facebook's 1.49 billion active, monthly accounts. The company also launched an open API for Messenger, encouraging developers and publishers to build custom apps for the ecosystem. It simultaneously began beta testing Businesses on Messenger, a tool facilitating e-commerce and customer support. In August 2015, Instagram, another of Facebook's acquisitions, launched enhanced one-to-one messaging---encouraging users to share photos and videos from the news feed within private chats.
\section{A Flow from East to West}
Despite the boldness of Zuckerberg's repositioning, Facebook was responding to trends more than shaping them. A large swath of chat app innovation continues to originate in Asia on platforms like WeChat and LINE, and Western apps often appropriate those platforms' best products.
WeChat, in particular, has a monolithic presence in China reminiscent of late 1990s Internet portals like AOL and Yahoo (with a modern mobile twist). Users not only talk to friends and consume news on the app, but also make purchases, pay utility bills, book taxis and doctors appointments, enroll in brand loyalty programs, monitor traffic and air pollution, and report incidents to the police.
That dominance of the mobile web in countries like China might not be as likely in other markets, but it has served as inspiration for ambitious Western chat apps plotting roadmaps for growth and monetization. Like WeChat, Japan's LINE is also incredibly advanced in its product offerings, grossing \$656 million in revenue in 2014. By contrast, while leading Western messenger apps may boast multibillion-dollar valuations, they often have profit and loss sheets in the red.
Time will tell if the same winning strategies will work halfway around the world. But for news organizations in North America and Europe looking for a glimpse of how the market may appear in one to two years, downloading WeChat and LINE is the best place to start.
\section[Regional and Demographic Strongholds]{Regional and Demographic Strongholds}
When devising your own strategy for messaging apps, it's vital to select the right platform mix for your organization, based on three core criteria:
\begin{enumerate}[itemsep=1em]
\item\textbf{Regional Strongholds:} Only a small group of apps like WhatsApp, Facebook Messenger, and Viber can be said to be truly global---and even those platforms struggle in certain countries. Meanwhile, messengers like WeChat, LINE, and KakaoTalk completely dominate specific markets but have negligible traction in others.
\item\textbf{Demographics:} It's a common misconception that messaging apps are a uniformly millennial phenomenon. Some apps like Snapchat and LINE skew both young and female, but others like Tango (which boasts 100 million monthly, active users, by our estimate) predominantly appeal to those aged 25--54 and strongly over-index with Hispanic and African-American users.
\item\textbf{Product Features:} If your primary goal is to drive traffic directly back to your website, that won't be possible with apps like Snapchat that don't support clickable URL links. And if you want to launch a sticker/emoji-pack campaign, LINE and Viber are great options, but you can rule out both WhatsApp and Snapchat. Each app has a particular set of features, so make sure to choose one that supports the activation you have in mind.\end{enumerate}
\section{Industry Challenges}
\begin{enumerate}[itemsep=1em]
\item\textbf{Fragmentation:} The social media landscape is entering a period of hyper-fragmentation that may be a challenge to publishers: Facebook, Twitter, and Instagram continue to loom large, but social media managers can now launch official channels on roughly 10 chat apps with over 50 million monthly, active users each.
\hspace{2ex} BuzzFeed, a perennial innovator in digital audience development, provides a great example of what it looks like to be on nearly all of these platforms. Starting with the launch of a share-to-WhatsApp button on mobile in February 2014, BuzzFeed has also built an official presence on seven additional major messengers, as seen in the timeline chart on the following page.
\item\textbf{Analytics:} For organizations accustomed to robust, real-time data, the lack of good analytics tools for messaging apps remains a major deterrent to adoption. The challenge is twofold: Strong analytics dashboards take time to build, and many messengers are privacy-centric by nature.
\hspace{2ex} The latter issue has led to an existential crisis for apps keen to remain true to their roots while also attracting brands and appeasing investors. To the far left, companies like WhatsApp and Telegram have made public promises to shun personal data collection and advertising. Closer to center, Snapchat and Kik collect basic information like age and location for ad targeting, but denounce ``creepy,'' hyper-targeted ads. Other platforms like Pinger seem more inclined to offer rich data collection and hyper-targeting of anonymized users. Specifically, Pinger leverages keyword data to let advertisers reach users based on their interests.
\begin{table}
\noindent{\textbf{Chat App Use by Publication}}
\newline
\resizebox{\textwidth}{!}{
\begin{tabular}{lccccccccc}
% line 1 of table headers
\textbf{} & \textbf{} & \textbf{} & \textbf{} & \textbf{The} & \textbf{} & \textit{The} & \textbf{} & \textit{The} & \textit{The}\\
% line 2 of table headers
\textbf{} & \textbf{BBC} & \textbf{BuzzFeed} & \textbf{CNN} & \textbf{Huffington} & \textbf{Mashable} & \textit{New York} & \textbf{VICE} & \textit{Washington} & \textit{Wall Street}\\
% line 3 of table headers
\textbf{} & \textbf{News} & \textbf{} & \textbf{} & \textbf{Post} & \textbf{} & \textit{Times} & \textbf{} & \textit{Post} & \textit{Journal}\\
\hline
Kik& &X& &X& & &X&X& \\
LINE&X&X& & &X& & & &X\\
Skype& & & & & & &X& & \\
Snapchat Discover& &X&X& &X& &X& & \\
Snapchat Stories&X&X& &X&X&X&X&X&X\\
Tango& &X& &X&X& & & & \\
Viber&X&X& &X&X& & & & \\
WeChat&X&X& & & &X& & &X\\
WhatsApp Channel&X& & &X& &X& & &X\\
WhatsApp Mobile Share&X&X&X&X&X&X&X&X& \\
Yo&X&X& &X&X& & & & \\
\end{tabular}}
\end{table}
\hspace{2ex} Still, in a landscape increasingly driven by programmatic ambitions and data-centric decision making, chat apps currently deliver comparatively limited information in basic dashboards, or in some cases via analog reporting. Most are mobilizing to remedy the situation quickly, and a host of third-party services are also beginning to create dashboard solutions based on the major apps' willingness to grant API access.
\item\textbf{Growing Pains:} As messaging apps respond to the demands of spectacular growth, publisher partners we've spoken to have at times found it difficult to get consistent support or answers to questions about platform capabilities.
\hspace{2ex} Apps like Tango have also made large changes to their channel format for publishers---starting with a news feed that helped drive traffic to content, but transitioning to chat rooms geared toward discussion. While changes like this are understandable as part of a process for looking to find experiences that resonate with users, the volatility can be unsettling.
\hspace{2ex} Other platforms like WhatsApp currently have little interest altogether in providing tools for publishers. Their emphasis, for the time being, is purely on connecting users to friends and family. And while this may not technically qualify as a growing pain, it certainly poses logistical challenges for companies attempting to adapt the app to their needs.
\end{enumerate}
\section{Industry Opportunities}
\begin{enumerate}[itemsep=1em]
\item\textbf{Higher Engagement:} Since many chat apps provide publishers with push notifications or chatbot experiences (programmable robots that converse with users---see glossary), they can deliver significantly higher engagement rates than Facebook and Twitter. For example, LINE's Euro-Americas CEO Jeanie Han claims that 55.8 percent of push notifications sent to followers of official accounts are read.\autocite{BILINE} This advantage may erode from its current levels as new publishers compete for attention on each platform, but message open rates are still likely to supersede social network news feeds.
\item\textbf{Audience Development:} With billions of active users across multiple major chat apps, publishers have been successful in building large audiences fairly quickly on several platforms.
\item\textbf{A Chance to Connect With Users in a New Way:} Messaging apps offer a host of features not available on social networks or other platforms. Publishers can creatively leverage these tools to tell stories in new ways. For example, Snapchat lets users write and draw on top of content from publishers before sharing with friends. Companies like BuzzFeed are also experimenting with publisher-branded emojis that followers use to enhance personal conversations on apps like LINE.
\item\textbf{Building Community:} Chat apps offer an opportunity for readers and viewers to easily connect, share, collaborate, and discuss a range of topics. Platforms like Kik and Tango, for example, let companies host their own chat rooms where readers and viewers can meet and discuss topics of interest. And Snapchat's Live Stories allow people in a specific geolocation to contribute eyewitness media to a crowdsourced video piece the entire Snapchat community can view.
\end{enumerate}
\chapter{Key Players and Case Studies}
\blankpage
\noindent For publishers acting as early adopters, 2014 and 2015 has been a period of great experimentation. In addition to learning the strengths and weaknesses of various platforms, news organizations have also explored different strategies for adapting their professional voice to an ecosystem filled with emojis, stickers, games, memes, and more.
We've taken a look at some of the main messaging platforms and how news organizations use them.
\section[LINE: Japanese Chat App Spins Fun Visuals into Big Profits]{LINE: Japanese Chat App Spins Fun Visuals \protect\newline into Big Profits}
\begin{framed}
\noindent\textbf{Audience:} 211 million monthly, active users\\
\noindent\textbf{Top Markets:} Japan, Taiwan, Thailand, Indonesia, Spain\\
\noindent\textbf{Demographics:} Majority aged 16--34\\
\noindent\textbf{Key Features:} Free to use; multimedia file-sharing capability; works across all major mobile phone platforms and PCs; timeline news feed; official brand accounts with CMS and one daily push alert limit; stickers, coupons, and games for free and paid.
\end{framed}
\vspace{\baselineskip}
LINE (the official trademark is capitalized) is a Japanese messaging app initially created in response to the Tokyo earthquake in 2011 as a means for employees of parent company NHN Japan to stay in touch. It was released to the public later in the year and experienced significant growth across the country and in the region, particularly in Thailand, Taiwan, and Indonesia.
It stands out as the most profitable messaging app on the market, with a recent App Annie report suggesting LINE as the most profitable of any app in June 2015.\autocite{AppAnnie} This is in large part due to its hugely popular games and stickers market, which drive roughly 60 percent and 20 percent of revenue, respectively. The company reported \$656 million (JPY 86.3 billion) in gross revenue for 2014, far outpacing its competitors.\autocite{Line2014results}
LINE has official accounts for brands and publishers, offering them a dedicated CMS browser to create and manage daily push alerts and content on the account's home feed.
\subsection{BuzzFeed Builds LINE Audience with Push Notifications, \protect\newline Stickers, and Comics}
BBC News and the \textit{The Wall Street Journal} are among the news organizations that have a million-plus subscribers to their LINE accounts, experimenting on different content models around video (BBC) and daily alerts and breaking news (\textit{The Wall Street Journal}). BuzzFeed, a more recent entrant to the platform, has taken a very different approach.
Bryant Hua, associate social media editor at BuzzFeed, explained the company's thinking:
\begin{quote}
LINE is probably one of the most exciting messaging apps, because you can send global push messages, but there's also a feed on the home channel that you can publish to. We were more able to curate the channel in a BuzzFeed way. Comics are one of the big areas that we're pushing into---we have comics on Facebook, Twitter, Instagram---and this platform in particular seems to be a place where the audience is reacting well to them.
\end{quote}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page14_BF1.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page14_BF2.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page14_BF3.png}
% \end{figure}
LINE has its own web browser-based CMS and provides the ability to schedule posts, which makes managing the account much more efficient.
The BuzzFeed channel rarely links back to its main website, a similar strategy that it employs on social media platforms, too. Hua added: ``We have a more distributed strategy in 2015 and we're not totally focused on driving traffic back to the site, so we provide as much information with the feed as possible.''
One of the most effective ways to attract new subscribers on the platform (as is the case with several other chat apps) is by using stickers. BuzzFeed debuted its own sticker set, enabling LINE users to download them for free as long as they subscribed to the BuzzFeed channel. This helped BuzzFeed to acquire a following of over 200,000 within a few months of launch.
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page15_BF1.png}
% \end{figure}
LINE also allows users to interact with content using emojis. Instead of clicking a ``like'' button, users can choose from a selection of six different emojis to express how they feel about a story or piece of content (Facebook began testing a similar approach called Reactions in October).\autocite{EngadgetFacebook} Interactive polls and a commenting system also let users respond in text and with stickers, which Hua said is a unique way that LINE engages with audiences. A recent feature asked users to select the house from Harry Potter's Hogwarts which they most fit into; it was one of BuzzFeed's most engaged posts since the channel launched.
\begin{figure}
\begin{center}
\includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page15_BF2.png}
\includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page15_BF3.png}
\caption{BuzzFeed has achieved success on LINE using the platform's 'stickers' (left) and interactive polls (right).}
\end{center}
\end{figure}
Hua openly admitted that hard news hasn't particularly worked on the LINE channel---headline bulletins from the news apps team haven't generated much engagement like they do on some other social media channels.
The experience is in direct contrast with the LINE channels of BBC News and \textit{The Wall Street Journal}. Both of these accounts passed the one million-subscriber mark earlier this year. The difference in how audiences engage with news on their channels, compared to that of BuzzFeed, is potentially attributable to subscribers' different expectations from the brands, with BuzzFeed more typically offering large slices of humor and viral memes alongside some news content.
\section{WeChat: China's Tencent Reinvents the Web Portal for Mobile}
\begin{framed}
\noindent\textbf{Audience:} 600 million monthly, active users\\
\noindent\textbf{Top Markets:} China, Malaysia, Hong Kong, India, Taiwan\\
\noindent\textbf{Demographics:} Majority of users aged 16--34\\
\noindent\textbf{Key Features:} Connect to friends via nearby ``radar''; ``shake'' phone (see glossary for definition) and connect with whomever else is shaking at that moment; enter walkie-talkie mode (see glossary for definition); official brand platform with CMS; free and paid stickers and coupons; share multimedia files; works on all major mobile platforms and PC/Macs.
\end{framed}
\vspace{\baselineskip}
Launched in 2011 as Weixin inside China, WeChat is the global version of the chat app, owned by parent company Tencent. It has 600 million monthly, active users,\autocite{TencentResults} the vast majority of whom call China home. While Tencent doesn't split out the figure for the number of users WeChat hosts outside of China, we understand the figure is between 100 million and 150 million active users.
It is undoubtedly very appealing to try and reach a Chinese audience through WeChat, and several news organizations have launched channels inside the platform with this intent. However, it is important to stress that WeChat and Weixin are separate entities. People inside China don't have access to WeChat and foreign news publishers don't have access to Weixin, unless they are able to pass a local registration process, which is often prohibitive.
Nevertheless, WeChat does provide a means of reaching Chinese diaspora outside the country---and those users can provide a route to reaching people inside China through social connections and sharing. WeChat has traditionally positioned its focus in Asia and Africa, with its recent investment in Kik---a rival chat app founded in Canada---indicative of its desire to gain a foothold in Western markets.
WeChat is probably one of the most sophisticated chat apps. In China, it strategically offers itself as a one-stop-shop for everything a person might want to do on a phone---from messaging and social networking, to buying goods and services, to mobile banking. The app outside China doesn't have all these features.
\subsection{Cliff Central Builds First Radio Channel on a Chat App}
Gareth Cliff is a former South African radio talk show host turned digital media entrepreneur. In 2014, he founded cliffcentral.com, which aimed to merge online radio broadcasting with social media and instant messaging platforms.\autocite{CNNCliff}
He partnered with WeChat, then at the early stages of establishing a presence in Africa, to launch the world's first full radio and audio channel inside a chat platform. Cliff noted:
\begin{quote}
WeChat has been great to work with. We worked with them to develop an instant bespoke platform where users could stream our radio broadcasts live and listen to our podcasts on demand. We update the channel daily, with new podcasts and pictures. It gives our audience direct access to our presenters and DJs---we have our WeChat channel plugged in to our studio so we can respond to messages in real time on the air.
\end{quote}
Cliff's shock-jock style remains part of the DNA of his digital radio network and it seems to be a good fit for the medium, with the channel currently boasting around 140,000 subscribers. It requires a daily production effort to keep it updated, with additional attention to the automated audio streams pulled into the channel. The platform is optimized to take into account that many potential users may have limited data plans: it offers both low- and high-resolution audio streams.
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page17_WeChat_CliffCentral1.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page17_WeChat_CliffCentral2.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page17_WeChat_CliffCentral3.png}
% \end{figure}
``Being a digital-only operation, we're able to turn on a dime and be agile in our strategy. You need to be able to pull in an audience across all these digital platforms, and so it ultimately comes down to your content,'' Cliff said.
One of the most exciting aspects of the project for him is the potential for commercial revenue in the future: ``We're still at the early stages, but I can see a time when we could add click-to-buy functionality, as well as offer sponsorship and advertising opportunities for the channel.''
As many radio stations around the world look toward their digital futures, the pioneering work of Cliff Central on WeChat is a fine example of how messaging platforms can help the radio industry.
\section[Kik: Messaging App for Teens Goes All-In on A.I. Chatbots]{Kik: Messaging App for Teens Goes All-In \protect\newline on A.I. Chatbots}
\begin{framed}
\noindent\textbf{Audience:} 80 million estimated monthly, active users \\
\noindent\textbf{Top Markets:} North America \\
\noindent\textbf{Key Demographics:} 82 percent of users are aged 13--24\\
\noindent\textbf{Key Features:} Chatbots, web browser, texting, stickers and emojis, games.
\end{framed}
When Kik's 27-year-old CEO Ted Livingston declared his intention to be ``The WeChat of the West'' in a November 2014 blog post,\autocite{MediumKik} it was more than a casual nod to influences. By mid-2015, Livingston was in business with WeChat's parent company Tencent, taking a \$50-million investment and enlisting the Chinese tech giant's help in replicating its success outside of Asia. The union also signaled WeChat's recognition that buying a piece of a successful North American messaging app was a better bet than continuing with an expensive and fruitless attempt to break into the U.S. market.
Founded in Waterloo, Canada, in 2009, Kik went viral with one key, differentiating feature: Users don't need to provide their mobile number to open an account. This anonymity led to mass adoption from people looking to connect with not only friends and family, but also with strangers they meet online or within the app itself. Kik positions itself as a mobile browser for the web, allowing users to access and share content and websites, or build custom HTML5 experiences that can be viewed and shared within the app.
Claiming on its website that 40 percent of U.S. teens and young adults has installed the app, Kik has enticed news organizations eager to reach a young North American audience.\autocite{ForbesKik} As of November 2014, publishers could leverage Promoted Chats---an A.I.-powered technology that \textit{The Wall Street Journal} dubbed ``the dawn of `chatvertising'\thinspace''\autocite{WSJKik}---the premise of which is that users have one-to-one text conversations with a bot programmed with scripted answers based on keyword recognition.
Dozens of companies like BuzzFeed, The Huffington Post, VICE, Comedy Central, MTV, Spotify, Funny or Die, Nike, NBC News, and \textit{The Washington Post} have tried their hand at Promoted Chats, typically paying \$0.20 to \$0.30 for each ``chatter'' that opts in to speak to them. Companies can send four push notifications per month to their entire chatter audience, and Kik claims 50 percent of brand push notifications are read within one hour of delivery. Publishers can also prominently feature their website or custom Kik web app link within Promoted Chat, which opens in the Kik browser.
\subsection[Care to Speak to the Washington Post Chatbot?]{Care to Speak to \textit{The Washington Post} Chatbot?}
\begin{wrapfigure}{r}{0.5\textwidth}
\includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page19_Kik2.png}
%\caption{\textit{The Washington Post} has sought to engage Kik users via interactive quizzes.}
\end{wrapfigure}
Some organizations share articles to drive traffic to their website, while others, like \textit{The Washington Post}, favor engaging users through games, quizzes, and chat adventures that live within Kik and have little to do with current events. At its launch on the platform, \textit{The Post} introduced ``Kiktionary,'' in which users are shown a partial illustration of a political figure and have the option to guess who it is, or type ``GIVEUP,'' ``SEEMORE,'' or ``ENDGAME.''
On a second occasion, \textit{The Washington Post} sent a push notification stating, ``Trivia time! Want to LEARN or PLAY?'' to lead users into a quiz highlighting Hillary Clinton's status as a Grammy winner. The most successful
\textit{Washington Post} conversation starter asked users to take a virtual road trip to a destination of their choice.
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page19_Kik1.png}
% \end{figure}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page19_Kik3.png}
% \end{figure}
Ryan Kellett, \textit{The Washington Post}'s director of audience growth, said:
\begin{quote}
I'd keep in mind that we are still developing what our strategy should be. We aim to design experiences that are surprising and useful, which means pushing the platform (and in this case, the bot) to its limits \ldots We do read through some of our individual user conversations. It helps us get a sense of where we might be missing something in designing the bot experience.
\end{quote}
When you see the words ``\textit{Washington Post} is typing \ldots '' as you await a chatbot response, it should be clear to users that they're befriending a robot. And in less than a year, 16 million Kik users have chosen to do just that, exchanging half a billion messages with Promoted Chat accounts.
Kik actively plans to greatly expand the capabilities of bots. ``We believe chat will become the dominant interface that connects the digital and real worlds through more sophisticated A.I. executions like bots,'' said Paul Gray, Kik's director of platform services. ``We're only at the tip of the iceberg.''
For its part, \textit{The Washington Post} remains cautiously optimistic. ``Chat apps including Kik have incredible potential, and we're just starting to play in those spaces,'' said Kellert. ``But it's too soon to tell where they'd rank in terms of platform importance.''
\section{WhatsApp: The No-Frills Messaging App}
\begin{framed}
\noindent\textbf{Audience:} 900 million monthly, active users \\
\noindent\textbf{Top Markets:} India, South Africa, Malaysia, Spain, Mexico \\
\noindent\textbf{Demographics:} Broad age range, not limited to those aged 16--34\\
\noindent\textbf{Key Features:} Free messaging for the first year, then an annual subscription of \$1; free WhatsApp calls; WhatsApp web interface; voice memos, as well as audio, image, and video files; groups and broadcast lists.
\end{framed}
\vspace{\baselineskip}
In early September of 2015, co-founder of WhatsApp Jan Koum announced that the company had passed the 900 million mark for monthly, active users.\autocite{FacebookWhatsApp}
The platform was likely to break the one billion active users mark by the end of 2015 or soon afterward.
While it may not be the dominant chat app in the United States, WhatsApp rules across many parts of the world as the number one downloaded app of any kind (let alone chat app). One of the key reasons for its dramatic, global uptake is the free alternative it provides to expensive SMS charges that exist in many parts of the world. In addition to text messages, it can also facilitate voice memos, images, and video clips---and, most recently, Internet calls.
Another big factor in its huge, global success is the simplicity of the app itself. Once downloaded, it scans a user's address book and immediately lets him or her communicate with any personal contacts already on WhatsApp. It doesn't require the creation of a username or password---an impediment which remains a significant barrier to entry for many people in emerging markets when it comes to other apps and social media platforms.
While many instant messaging platforms tend to skew toward a younger demographic of users, WhatsApp has a much broader appeal globally.
\subsection{BBC News Using WhatsApp for Newsgathering}
BBC News was the first to experiment with editorial content on WhatsApp in 2014, most notably with its Ebola WhatsApp ``lifeline'' information service targeting those in West Africa.\autocite{BarotEbola}
However, WhatsApp is not engineered to work efficiently as a mass-push distribution service, and much of BBC News's more recent strategy on the platform has focused on audience engagement through user-generated content and newsgathering.
Early in 2015, the UGC and Social Media Hub, situated in the heart of the BBC's global newsroom, set up a central WhatsApp number and encouraged news audiences across online, TV, and radio to use it as a means to share their content with the newsroom.\autocite{BBCWhatsApp}
Soon after launching the account, it quickly proved its value: ``For us, WhatsApp has proved a key way to get in touch with people in areas where other forms of communication just don't work, so it was naturally the source we turned to following the earthquakes in Nepal,'' said Natalie Miller, a senior journalist at the UGC Hub.
Miller explained why WhatsApp became the primary communication tool for many in Nepal at the time of the earthquake:
\begin{quote}
Phone lines were down in the affected areas and we can be waiting a long time for an email to be received and answered, whereas WhatsApp is quick and allows people to share their views, pictures, and videos with us all via the same channel. In some cases WhatsApp allows us to speak to people who just don't feel safe talking on the phone.
\end{quote}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page22_WhatsApp1.jpg}
% \end{figure}%
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page22_WhatsApp2.jpg}
% \end{figure}
Miller also explained that directly verifying content when people submit it is a much quicker process inside WhatsApp---as all inbound communication comes with a mobile number attached to it. ``On other social media channels, it can take some time for us to message people and get a response,'' she said. ``With WhatsApp it's often instant as they see our message popping up immediately on their phone. If we need to follow up with a call, we have their mobile number and so this speeds up the process considerably.''
The launch of WhatsApp Web,\autocite{WhatsAppWeb} which allows the app on a user's phone to pair with a computer screen, has helped the UGC Hub manage incoming content much more effectively, too. Miller recommended using an Android handset, as it is easier to transfer the media content coming in via the subfolder menus on the Android platform via a USB cable onto a computer; iPhones don't have the same ability. ``We normally assign one of our producers each day to manage the WhatsApp account in addition to their other duties. The web interface means they can keep an eye on any incoming content, respond to any messages, and also continue to do other work on their computers,'' Miller added.
``In the case of the second earthquake in Nepal, we received almost 50 WhatsApp messages, including pictures and videos from within the country and dozens more from elsewhere talking about the quake,'' she said. ``It became the main source of content for the live news blog on the BBC News website that day.''
The team also produced a separate story on the website detailing the experiences of those affected on the ground.\autocite{BBCNepal}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page22_WhatsApp2.jpg}
% \end{figure}
The potential for using WhatsApp is clearly significant for the BBC. In addition to the UCG Hub, a number of its news programs have set up their own accounts to solicit audience opinion and contributions. Several of its language services also use WhatsApp to source material around major stories. However, this broad type of use remains relatively limited among other news organizations---particularly those with global audiences---and is likely to be an area of increasing focus in the coming months.
\newpage
\section[Snapchat: The New Home of Sexting \ldots and CNN]{Snapchat: The New Home of Sexting \ldots \protect\newline and CNN}
\begin{framed}
\noindent\textbf{Audience:} 100 million daily, active users globally\\
\noindent\textbf{Top Markets:} North America, Europe\\
\noindent\textbf{Key Demographics:} aged 13--34\\
\noindent\textbf{Key Features:} Disappearing messages, Discover, crowdsourced Live Story montages, My Story daily montages, QR codes, location-based geofilters, Snapcash peer-to-peer payments.
\end{framed}
\vspace{\baselineskip}
Founded in 2011 and initially synonymous with sexting,\autocite{FCSnapchat} Snapchat rapidly evolved into a mainstream global phenomenon by introducing ephemeral messaging to teens and college students. While Instagram, Twitter, and Facebook present a more coiffed and manicured version of users' personas, Snapchat has become an outlet for people and publishers to provide a raw, behind-the-scenes glimpse into their day.
My Story is the tool available to most publishers and compiles a chronological montage of your snaps from the last day, with each snap disappearing after 24 hours. It looks and feels like one-to-one snaps from a friend, but is viewable by any user that follows your account. All content must be shot live with your phone, lending a rawness and immediacy to the end result. You can also text, draw, or place emojis of any size on top of your snaps.
\subsection[The New York Times Embraces the Selfie]{\textit{The New York Times} Embraces the Selfie}
In a blog post, \textit{The New York Times}'s social editor Talya Minsberg admitted that ``envisioning what \textit{The New York Times} could look like on Snapchat was tricky. How could a traditional media company fit into a medium known for bad selfies?''\autocite{NYTsnapchat}
\textit{The Times} has primarily experimented with My Stories as a new way to cover live events, with a variety of staff journalists helming the account for stretches of time. Pieces regularly juxtapose selfie standups from reporters with footage of the occasion. In some instances this includes long-form interviews with public figures, such as when Laverne Cox gave \textit{The Times} an interview exclusively on Snapchat as a lead-up to her TimesTalks event, which was also covered in the My Story. Other events have included the Met Gala, Fashion Week, the AfroPunk Festival, and the Pope's visit to New York.
``The best Snapchat stories generally are ones that tell a narrative in a personal, visual way that pulls in and keeps the viewer,'' wrote Minsberg, who went on to quote her colleague, news assistant and web producer Valeriya Safronova:
\begin{quote}
What's great about Snapchat is that it's a casual and playful medium. Images have short life spans and viewers look through them very quickly, so there's no need to carefully stage a photo or video. Candid moments are prized above staged shots.
\end{quote}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page25_NYT1.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page25_NYT2.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page25_NYT3.png}
% \end{figure}
When it comes to measuring My Story success, publishers have access to fairly limited information, viewable only on mobile. During the life span of a 24-hour My Story, they can see how many people watched each snap, which also lets them deduce drop-off. Publishers can view the number of users that took a screenshot of their story and can access a list of people that have added their account. For those looking to bolster their followings, Snapchat also allows for the creation of a custom QR code that users scan within the app to automatically follow an account.
\subsection{CNN Courts Millennials With Bespoke Daily Content on Snapchat Discover}
Snapchat launched its Discover platform in early 2015.\autocite{SnapchatDiscover} As one of the most eagerly anticipated product launches for some time in the media industry, excitement was matched in equal measure by curiosity and skepticism about the app's new section---devoted to channels curated by a small group of launch partners.
In his ``Introducing Discover'' blog post, CEO Evan Spiegel took social networks to task for the rise of clickbait culture:
\begin{quote}
This is not social media. Social media companies tell us what to read based on what's most recent or most popular. We see it differently. We count on editors and artists, not clicks and shares, to determine what's important.\autocite{SnapchatDiscover}
\end{quote}
Snapchat claims to have 100 million daily users, and a Snapchat represenative said that in the first 30 days after a design change made Discover easier to navigate, 50 million users visited the section specifically.\autocite{DigidaySnapchat}
There have been suggestions that traffic to Discover has fallen since its initial launch. However, partners with whom we spoke claim to have noticed a marked increase since the section was made more visible to users in July of 2015. BuzzFeed's CEO Jonah Peretti stated in September that 21 percent of all BuzzFeed content views now come from Snapchat Discover.\autocite{RecodeBuzzfeed} \textit{Cosmopolitan} announced similarly high numbers for its Discover page---roughly three million daily readers and up to 1.2 million daily content shares.\autocite{DigidayCosmo} Those are likely among the highest-performing partners, as others we spoke to, who were not able to provide figures publicly, told us they are seeing in the range of 500,000--700,000 daily users.
Among Discover's high-profile launch partners was CNN. Samantha Barry, head of social media and senior director of strategy at CNN, worked with a small team for several months to get the outlet's proposition for the platform ready ahead of going live in January of 2015. She told us in an August 2015 interview:
\begin{quote}
It brought together people from editorial, design, and product---three parts of the organization that don't necessarily always work that closely together. We effectively formed a small startup operation and tried to figure out how do we tell stories on a platform that is truly native and bespoke to it? It was a new way of storytelling that we had to understand.
\end{quote}
A team of four, including two designers and two producers, now works full time on CNN's Snapchat channel. In addition, the product team provides support as and when required. All the content is made to order, partly to suit the vertical screen experience for users inside the app.
Barry said the CNN Snapchat channel has evolved significantly since its initial inception, as its team has performed constant iterations based on audience feedback and after measuring engagement on a range of content.
The Discover section offers a very different environment from the ``regular'' Snapchat experience, and media organizations generally handle it uniquely from standard social media accounts. Discover is more like a magazine made for the millennial mobile generation, said Barry: ``In some ways it's a throwback to old media. The user chooses to go in; we curate the content they see in the same way as a newspaper did. They experience it in much the same way as a traditional TV schedule.''
So how does Barry measure success? While she couldn't reveal numbers, she said the audience figures have been beyond what she could have hoped for. Based on the data Snapchat can provide, CNN is able to measure average time viewed, conversion rates, and shares.
And what content has worked the best? To date, CNN has published more than 1,000 stories on Discover. Light stories and treatments are certainly part of the mix, but despite what many might assume, serious stories have also performed remarkably well.
Barry listed several examples:
\begin{quote}
``Raising Ryland,'' a 12-minute short documentary on a 5-year-old who is transgender; features on race relations and gender equality; a special Discover edition focusing on the poor children of Silicon Valley; and ``Hunting Ground,'' a series that tackled the issue of campus rape.
\end{quote}
``Don't assume they know the background to the story'' is one golden rule that Barry's team follows when creating content.
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page27_Snapchat_CNN1.jpg-large.jpg}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page27_Snapchat_CNN2.jpg-large.jpg}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page27_Snapchat_CNN3.jpg-large.jpg}
% \end{figure}
Though Snapchat Discover doesn't allow links or any means for taking users back to CNN's website, Barry has seen evidence that Snapchat users do visit CNN's main TV channel as a result of Discover: ``We've come across examples where parents get called by their kids to TiVo a particular CNN documentary because they have seen it trailed on our Discover channel,'' she said.
\newpage
\subsection{Snapchat's Peter Hamby Delivers Crowdsourced News and Selfie-Standups}
\begin{wrapfigure}{r}{0.5\textwidth}
\includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page29_Iran2.png}
%\caption{Snapchat coverage of the Iran nuclear deal.}
\end{wrapfigure}
In June 2014, Snapchat launched Live Stories, a game-changing product that crowdsources snaps from major events into curated, mini-documentaries visible to the broader Snapchat community. Users in a particular geolocation see an option to submit their posts to Live Story, and the Snapchat team then creates a montage highlighting various vantage points and experiences.
The most popular Live Story to date featured Snapchatters' experience of a storm dubbed ``Snowpocalypse.'' At roughly 200 seconds in length, the clip was viewed 24.79 million times in a 24-hour period, a viewership that outpaces the most popular network TV shows. Over time, Snapchat introduced stories like ``Holi in India'' and ``Namibia,'' offering glimpses into the cultures and traditions of cities and countries many users knew little about.
From a newsroom perspective, Live Stories took an interesting turn when Snapchat hired news veteran Peter Hamby away from CNN in April of 2015. With the U.S. 2016 election cycle moving into full swing, Snapchat began inserting Hamby standups into crowdsourced election stories to give users context for major events like GOP debates.
``The people that are on Snapchat right now are folks who \ldots aren't getting news and information in traditional ways \ldots they're not watching TV, cable news, reading newspapers,'' said Hamby in a podcast for KUT News and \textit{The Texas Tribune}. ``It's a hard-to-reach, young but still smart audience, and my job this election is to \ldots educate and demystify the process for an audience of a hundred million Snapchat users who might be coming to the campaign for the first time.''\autocite{KUTSnapchatElection}
Stories also began to feature educational overlays with illustrations of politicians and brief descriptions of their keys positions on the issues.
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page29_1.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page29_2.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page29_3.png}
% \end{figure}
In a story covering debate over the Iran nuclear deal, Snapchat broke down the key players on both sides of the aisle for a likely audience of millions.
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page29_Iran1.png}
% \end{figure}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page29_Iran3.png}
% \end{figure}
Hamby pointed out that young Snapchatters took to Twitter to announce that they hadn't known the ins and outs of the Iran nuclear debate before learning about it on Snapchat.\autocite{KUTSnapchatElection}
\begin{figure}
\begin{center}
\includegraphics[width=1\textwidth]{graphics/CHATAPPS_Page30_Tweet1.png}
\includegraphics[width=1\textwidth]{graphics/CHATAPPS_Page30_Tweet2.png}
\includegraphics[width=1\textwidth]{graphics/CHATAPPS_Page30_Tweet3.png}
\end{center}
\end{figure}
There are, of course, users who are less enthused to see Snapchat delve into politics.
\begin{figure}
\begin{center}
\includegraphics[width=1\textwidth]{graphics/CHATAPPS_Page30_Tweet4.png}
\end{center}
\end{figure}
\vspace{2in}
In other instances, Snapchat has enlisted the major politicians themselves as UGC contributors, offering users a behind-the-scenes look at Hillary Clinton in her car or Arnold Schwarzenegger en route to an event. In a particularly memorable moment, Democratic hopeful Bernie Sanders addressed the Snapchat audience with a friendly ``Hello, Snapshot!''
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page31_Bernie.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page31_Carson.png}
% \end{figure} %
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page31_Fiorina.png}
% \end{figure}
While it's hard to assess the scope of Snapchat's newsroom ambitions, it clearly sees itself less as a social media platform than as a video and media company with social layers. In his KUT interview, Hamby enthusiastically described the difference between network news coverage and Snapchat's crowdsource-and-curate approach:
\begin{quote}
When I was at CNN we would cover an event with a couple of cameras \ldots with the live story we can cover an event from many different perspectives with everybody's camera, in some cases thousands of cameras---and that's really powerful.\autocite{KUTSnapchatElection}
\end{quote}
\section{Viber: Free Calls Conquer the Globe}
\begin{framed}
\noindent\textbf{Audience:} 250 million monthly, active users \\
\noindent\textbf{Top Markets:} Russia, India, Iran, Australia, Middle East\\
\noindent\textbf{Demographics:} Majority of users aged 25--35 \\
\noindent\textbf{Key Features:} Public Chats, texting, phone and video calls, stickers, games, service messages.
\end{framed}
\vspace{\baselineskip}
Founded in late 2010 by a team of two Israelis and two Belarusians, Viber is a formidable competitor to Skype that initially offered free calls and texting on the mobile web. By September 2015, the app hit 250 million monthly, active users, boasting strongholds on multiple continents and an expanded suite of features like stickers and games.
Publishers joined the conversation in November 2014 with the launch of Public Chats, a format whose name accurately describes its functionality. News organizations on the platform generally utilize Viber to broadcast text-based group discussions between their team members to the web in real time.
For the community, Public Chats is a spectator sport without the ability to post comments, but users can click heart icons next to individual chat moments to express their excitement. For publishers, each individual chat participant can easily share photos, video, stickers, and links from mobile or desktop. It's also a completely painless process to add or remove participants as you go.
\subsection{HuffPost Entertainment Team Lets Loose on Public Chats}
For all of Viber's charm, it can reveal a palpable self-consciousness as journalists trained to write articles or post to Twitter are asked to text message publicly. But, as HuffPost Entertainment proves, with the right mix of uninhibited colleagues truly letting loose in conversation, the results can be engaging and entertaining in a way that creates a heightened degree of intimacy between reporters and their audiences.
Lauren Zupkus, social media editor at HuffPost Entertainment, admitted that her initial reaction to the platform was, ``Who the hell is gonna care what I have to say?'' But to her surprise, 10,000 ``Vibers'' signed up to watch her team discuss Kylie Jenner and \textit{Game of Thrones}, or debate the merits of fall compared to summer. ``We're not striving to cram HuffPo articles down people's throats. I think the weakest thing you can do on social media as a brand is try too hard \ldots I think it's cool that we can be ourselves,'' she said.
\begin{wrapfigure}{r}{0.5\textwidth}
\includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page33_Viber.png}
%\caption{HuffPost Entertainment makes regular use of Viber's Public Chat feature.}
\end{wrapfigure}
Each day the HuffPo Entertainment team has a private chat to determine the topics for the day's public one, though they never script conversation. Zupkas described the entire process as something you do ``in free moments,'' making it less resource-intensive than Snapchat My Story posts. The team has also started promoting its Public Chat by closing articles with the statement, ``For a constant stream of entertainment news and discussion, follow HuffPost Entertainment on Viber.''
Viber's head of North America Scott Nelson confirmed that HuffPost's consistent activity yields the strongest results:
\begin{quote}
While it doesn't need to be a constant flow of minute-by-minute information, the most successful chats update daily. Not only does this keep the content fresh and engaging, it also ensures that their chat stays at the top of the listings in users' phones, keeping them front of mind.
\end{quote}
Other publishers on the platform include BuzzFeed; GMA News; Mashable; and BBC Nepali, which leveraged the app to deliver alerts to a large audience in the country during the recent earthquake crisis.
\section{Telegram: Chat Encryption for the Masses}
\begin{framed}
\noindent\textbf{Audience:} 62 million monthly, active users\\
\noindent\textbf{Top Markets:} Iran, India, Iraq, Uzbekistan, Spain\\
\noindent\textbf{Demographics:} Users with high privacy concerns, often in countries where government monitoring and security is a concern\\
\noindent\textbf{Key Features:} Channels allowing broadcasts access to an unlimited number of users; open source code and bot API; seamless syncing across mobiles, tablets, and PCs; ability to send multiple file types, including docs, MP3s, video, images, and compressed files of up to 1.5 gigabytes.
\end{framed}
\vspace{\baselineskip}
Telegram is a messaging app that focuses on speed and security. Its creators, brothers Nikolai and Pavel Durov, also founded the Russian social network VK. Telegram shares more similarities with WhatsApp than the Asian chat apps WeChat and LINE.
There are a couple of significant areas, though, in which it's distinct: The company prides itself in building what it describes as a highly secure app. It also has a completely open source code and API, allowing developers freedom to create their own versions of the app or build additional services on top of it.
Most recently Telegram announced the launch of channels,\autocite{TelegramChannels} which are broadcast lists similar to those found in WhatsApp but without the limitations on the number of contacts that can be added. This has been a major difficulty for many news organizations trying to run push-news services on WhatsApp, wherein the 256 broadcast-list limit makes any initiative very labor intensive and difficult to scale. In contrast, Telegram has a full desktop version and the same account can be managed from multiple devices at the same time, rendering the ability to scale broadcast activity considerably easier.
Another innovation in the messaging space that Telegram spearheaded is the launch of the Telegram Bots API,\autocite{TelegramBots} which allows developers to build custom services inside the app, link with external platforms, and ``do almost anything.''
A number of Russian news organizations have already started experimenting with the API, creating their own news bots.
The launch of bots has likely played a big part in the huge increase of daily messages inside the app. At a TechCrunch Disrupt event in September 2015,\autocite{TechCrunch} Pavel Durov reported that the number of daily messages exchanged on Telegram had risen from one billion in February to 12 billion in September, a staggering increase in just seven months. The number of monthly, active users---currently around 62 million---hasn't grown as quickly, so the increase in messages clearly suggests a big jump in activity among the app's existing user base.
It's probably not surprising that the secure nature of the app promotes a big uptake in areas where government monitoring and security is an issue. It has been the most frequently downloaded app in countries like Uzbekistan and Iran, just as it has courted controversy as the messaging app of choice for the Islamic State---an issue Durov also addressed at TechCrunch Disrupt: ``I think that privacy, ultimately, and our right for privacy is more important than our fear of bad things happening, like terrorism.''
BBC World Service, which runs news operations in 28 languages, has been the first international news organization to take advantage of Telegram's popularity in certain regions of the world. Its Persian Service recently launched a channel that acquired 80,000 direct subscribers within its first week, with some posts reaching as many as 320,000 users. Jacqui Maher, an interactive journalist at the BBC's News Labs, has been working on Telegram's bots platform to develop services to reach people in countries where the BBC is blocked:
\begin{quote}
Being encrypted but also open source, it's understandable why Telegram is proving to be popular in countries like Iran and Uzbekistan. The code we've been working from Telegram has so far proven to be very stable and easy to use. It's allowing us to open up secure news services in parts of the world we haven't been able to access before.
\end{quote}
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page35_Telegram1.png}
% \end{figure}%
% \begin{figure}
% \includegraphics[width=0.45\textwidth]{graphics/CHATAPPS_Page35_Telegram2.png}
% \end{figure}%