SlideShare una empresa de Scribd logo
1 de 65
@goutaste
Using Apps to Drive
Mobile-First SEO
Traffic
@goutaste
Android
&
iOS Intent
@goutaste
Understanding App Packs
@goutaste
New Android App Packs
@goutaste
Types of App Results
App Pack App Single App Carousel Deep LinksIcon Deep Links
@goutaste
 Meta-data can provide a “preview” of
the type of content in the app
 You don’t know what’s IN the app until
you download it
 App Store search is heavy on brand and
head terms vs. long tail
App Store Model
@goutaste
“Google’s mission is to organize the world’s information
and make it universally accessible and useful.”
- Google’s initial mission statement -
@goutaste
App Store Model vs. Search Engine Model
@goutaste
Android Deep Linking User Experience
@goutaste
“Google will be
considering "high
quality" apps to
be a positive
ranking factor in
mobile search.”
-Mariya Moeva (Google
Webmaster Trends Analyst,
SMX West 2015)
Website Parity = Positive Signal for Websites
WebApp
@goutaste
Google App Indexing:
Android
@goutaste
Custom URL Scheme
HTTP URL Scheme
Android: Create Intent Filters
@goutaste
Android: Create Intent Filters
Intent Filters need:
<action>
<data>
android:scheme
android:path
<category>
@goutaste
Deep Link to previously-
viewed ‘Calafia Café’
screen in the Zagat app
Android App Indexing API
@goutaste
...
public class MainActivity extends Activity {
static final Uri APP_URI = Uri.parse("android-app://com.example.android.recipes/http/recipe-
app.com/recipes");
static final Uri WEB_URL = Uri.parse("http://recipe-app.com/recipes/");
private GoogleApiClient mClient;
...
}
@Override
public void onStart() {
super.onStart();
...
@Override
public void onStop() {
...
// Call end() and disconnect the client
String title = "App Indexing API Title";
Action viewAction = Action.newAction(Action.TYPE_VIEW, title, WEB_URL, APP_URI);
AppIndex.AppIndexApi.end(mClient, viewAction);
mClient.disconnect();
...
Full code sample here: bit.ly/appindexingAPIcode
Android App Indexing API
@goutaste
...
public class MainActivity extends Activity {
static final Uri APP_URI = Uri.parse("android-app://com.example.android.recipes/http/recipe-
app.com/recipes");
static final Uri WEB_URL = Uri.parse("http://recipe-app.com/recipes/");
private GoogleApiClient mClient;
...
}
@Override
public void onStart() {
super.onStart();
...
@Override
public void onStop() {
...
// Call end() and disconnect the client
String title = "App Indexing API Title";
Action viewAction = Action.newAction(Action.TYPE_VIEW, title, WEB_URL, APP_URI);
AppIndex.AppIndexApi.end(mClient, viewAction);
mClient.disconnect();
...
Full code sample here: bit.ly/appindexingAPIcode
Android App Indexing API
@goutaste
Update App’s Robots.txt:
User-Agent: Googlebot
Allow: /
Android App Robots.txt
@goutaste
Android Custom
Schemes Requirement:
Web Markup
@goutaste
android-app://com.travel_app/travel_app/travel-app.com/hotels/curtis-hotel-denver
Protocol PackageID Scheme (custom) Host Path
Google’s Android Deep Link Format
Deep Link URL Format:
@goutaste
Rel=alternate XML Sitemaps Schema
<head>
...
<link rel="alternate" href="android-
app://com.travelapp.android/http/travelapp.com/examplescreen" />
...
</head>
<head>
...
<link rel="alternate" href="android-
app://com.travelapp.android/travelapp/examplescreen" />
<link rel="alternate" href="ios-app://123456/travelapp/examplescreen" />
...
</head>
@goutaste
Rel=alternate XML Sitemaps Schema
<?xml version="1.0" encoding="UTF-8" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://travelwebsite.com/examplepage</loc>
<xhtml:link rel="alternate" href="android-
app://com.travelapp.android/travelapp/examplescreen" />
<xhtml:link rel="alternate" href="ios-app://123456/travelapp/examplescreen" /></url>
<xhtml:link rel="alternate" href="android-
app://com.travelapp.android/http/travelapp.com/examplescreen" />
...
</urlset>
@goutaste
Rel=alternate SchemaXML Sitemaps
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"@id": "http://travelwebsite.com/examplepage",
"potentialAction": {
"@type": "ViewAction",
"target": "android-app://com.travelapp.android/http/travelapp.com/examplescreen"
}
}
</script>
@goutaste
Verify Website in GP/ Log Into GSC with GP Account
@goutaste
Google App
Indexing:
iOS
@goutaste
The Good
News Is…
@goutaste
The Bad News
Is…
@goutaste
iOS: Support Universal Links
https://subdomain.domain.com/path/subpath/
Scheme
“http” or “https”
Domain or Host Name Path or Prefix
Anatomy of a Universal Link:
@goutaste
iOS: Support Universal Links
Requirements:
• A registered domain
• SSL access to your domain
• Ability to upload a JSON file to your
domain
@goutaste
iOS: Support Universal Links
1 Get Your App Ready
• Modify your application delegate
• Adopt an entitlement in Xcode that
lists each domain associated with your
app
READ:
http://bit.ly/ios9universallinks
http://bit.ly/UIApplicationDelegate-
Reference
WATCH: http://bit.ly/appleuniversallinks
@goutaste
iOS: Support Universal Links
2 Get Your Server Ready
• Create an apple-app-site-
association file for each associated
domain with the content your app
supports and host it at the root level.
NOTE: The association file must be hosted on
a domain that supports HTTPS/TLS, even if
the HTTP deep links are not themselves
served via HTTPS.
{
"applinks": {
"apps": [],
"details": {
»ABC0123.com.domain.App": {
"paths":[ "*" ]
}
}
}
}
@goutaste
iOS: Support Universal Links
2 Get Your Server Ready
• Create an apple-app-site-
association file for each associated
domain with the content your app
supports and host it at the root level.
NOTE: The association file must be hosted on
a domain that supports HTTPS/TLS, even if
the HTTP deep links are not themselves
served via HTTPS.
{
"applinks": {
"apps": [],
"details": {
»ABC0123.com.domain.App": {
"paths":[
”/folder/subfolder/”,
”/folder2/subfolder2/*”,
]
}
}
}
}
@goutaste
iOS: Support Cocoapods
@goutaste
iOS: Support Cocoapods
1. Use most up-to-date version of CocoaPods
2. Add ‘GoogleAppIndexing’ pod to Podfile
3. Save and Install Pod
4. Import GoogleAppIndexing
1. Register app
pod 'GoogleAppIndexing'
pod install
#import <GoogleAppIndexing/GoogleAppIndexing.h>
[[GSDAppIndexing sharedInstance] registerApp:your iTunes ID];
@goutaste
Google App Indexing:
Web Markup
@goutaste
Google App Indexing:
Web Markup
@goutaste
Google Search App Ranking Factors
Positive Ranking Factors:
• App Installation Status
• Proper Technical Implementation
• Website Signals
• APP INDEXING API (extra boost!)
Negative Ranking Factors:
 Content Mismatch/ Back Button
Errors
 Interstitials
@goutaste
Google Search App Ranking Factors
Positive Ranking Factors:
• App Installation Status
• Proper Technical Implementation
• Website Signals
• APP INDEXING API (extra boost!)
• Coming soon: Engagement?
Negative Ranking Factors:
 Content Mismatch/ Back Button
Errors
 Interstitials
@goutaste
Deep Links Without Website Parity
Social MediaApple Search Email & Paid Ads
@goutaste
Apple Search App
Indexing in iOS 9
@goutaste
“Apple’s App Store commission is now at a
run-rate of $9 billion, more than its total revenue in the
year the iPod launched.”
- Benedict Evans, @BenedictEvans -
@goutaste
Apple Search
SPOTLIGHT SAFARISIRI
@goutaste
High-Engagement
App Screens
Suggested in
‘Siri Suggest’ on
iOS 9 Spotlight
Siri’s Predcitive Search Uses App Indexing
@goutaste
DEVICE INDEX
(PRIVATE)
CLOUD INDEX
(PUBLIC)
Apple Search Sources from Two Indexes
@goutaste
Apple Search App Indexing Methods
CoreSpotlight NSUserActivity Web Markup
@goutaste
Apple Search App
Indexing Option 1:
NSUserActivity
@goutaste
Core Spotlight NSUserActivity Web Markup
Used for…
Indexing public app screens
that mirror content on the
web
DOES require
corresponding web
content
Add code to WEB
Public Cloud Index
Used for…
Indexing app screens that
contain private/ personal
data
Does NOT require
corresponding web
content
Add code to APP
Private Device Index
Used for…
Indexing private and public
navigation points in the app
Does NOT require
corresponding web
content
Add code to APP
Private Device Index and/
or Public Cloud Index
Private Public
@goutaste
Private or Public
Public Only
Search results
meta data for
display and rankings
‘Canonical’
More info here: bit.ly/NSUserActivity
NSUserActivty
@goutaste
CoreSpotlight NSUserActivity Web MarkupNSUserActivity
with var eligibleForSearch with var eligibleForPublicIndexing
Private/
Device Index
Public/ Cloud
Index
PRIVATE APP SCREEN PUBLIC APP SCREEN
@goutaste
Apple Search App
Indexing Option 2:
Core Spotlight
@goutaste
Core Spotlight NSUserActivity Web Markup
Used for…
Indexing public app screens
that mirror content on the
web
DOES require
corresponding web
content
Add code to WEB
Public Cloud Index
Used for…
Indexing app screens that
contain private/ personal
data
Does NOT require
corresponding web
content
Add code to APP
Private Device Index
Used for…
Indexing private and public
navigation points in the app
Does NOT require
corresponding web
content
Add code to APP
Private Device Index and/
or Public Cloud Index
Private Public
@goutaste
Search results
meta data for
display and rankings
More info here: bit.ly/corespotlight
Core Spotlight
@goutaste
Apple Search App
Indexing Option 3:
Web Markup
@goutaste
CoreSpotlight NSUserActivity Web MarkupNSUserActivity
with var eligibleForSearch with var eligibleForPublicIndexing
Private/
Device Index
Public/ Cloud
Index
PRIVATE APP SCREEN PUBLIC APP SCREEN
@goutaste
Core Spotlight NSUserActivity Web Markup
Used for…
Indexing public app screens
that mirror content on the
web
DOES require
corresponding web
content
Add code to WEB
Public Cloud Index
Used for…
Indexing app screens that
contain private/ personal
data
Does NOT require
corresponding web
content
Add code to APP
Private Device Index
Used for…
Indexing private and public
navigation points in the app
Does NOT require
corresponding web
content
Add code to APP
Private Device Index and/
or Public Cloud Index
Private Public
@goutaste
Web Markup – Provide URLs to Apple
@goutaste
Twitter Cards AppLinks
Smart App
Banners
Web Markup
@goutaste
Twitter Cards AppLinks
Smart App
Banners
Web Markup
@goutaste
Twitter Cards AppLinks
Smart App
Banners
Web Markup
@goutaste
Web Markup – Meta Data (Schema &
Open Graph)
@goutaste
bit.ly/applesearchvalidator
Test URLs for Web Markup
@goutaste
Apple Search App Ranking Factors
Positive Ranking Factors:
• App Installation Status
• Personalized App Engagement
• App Result Click-Through Rate
• Keywords/ Title
• Aggregated Engagement
• Structured Data on Web
• Canonical App IDs
• Strength/Popularity of Web URL
Negative Ranking Factors:
 Low Engagement
 Over-Indexing
 Returns
 Keywords Spamming
 Interstitials
 JavaScript blocking Applebot (web only)
@goutaste
Deep Linking in
Email & Social
Media
@goutaste
Deep Link Redirectors in Email and Social Media
@goutaste
Deep Link Redirectors in Email and Social Media
@goutaste
The End

Más contenido relacionado

La actualidad más candente

iOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsiOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsJustin Briggs
 
Microsoft identity platform developer community call-October 2019
Microsoft identity platform developer community call-October 2019Microsoft identity platform developer community call-October 2019
Microsoft identity platform developer community call-October 2019Microsoft 365 Developer
 
Deep linking slides
Deep linking slidesDeep linking slides
Deep linking slidesPersonagraph
 
Deep dive into SharePoint 2013 hosted apps - Chris OBrien
Deep dive into SharePoint 2013 hosted apps - Chris OBrienDeep dive into SharePoint 2013 hosted apps - Chris OBrien
Deep dive into SharePoint 2013 hosted apps - Chris OBrienChris O'Brien
 
Android Deep Linking
Android Deep Linking  Android Deep Linking
Android Deep Linking Ketan Raval
 
Developer’s Independence Day: Introducing the SharePoint App Model
Developer’s Independence Day:Introducing the SharePoint App ModelDeveloper’s Independence Day:Introducing the SharePoint App Model
Developer’s Independence Day: Introducing the SharePoint App Modelbgerman
 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Suzzicks
 
App Model For SharePoint 2013
App Model For SharePoint 2013App Model For SharePoint 2013
App Model For SharePoint 2013Toni Il Caiser
 
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSanjay Patel
 
UaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing APIUaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing APIMatteo Bonifazi
 
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSanjay Patel
 
Microsoft Graph developer community call-March 2020
Microsoft Graph developer community call-March 2020Microsoft Graph developer community call-March 2020
Microsoft Graph developer community call-March 2020Microsoft 365 Developer
 
Firebase. Предмет и область применения — Тимур Ахметгареев
Firebase. Предмет и область применения — Тимур АхметгареевFirebase. Предмет и область применения — Тимур Ахметгареев
Firebase. Предмет и область применения — Тимур АхметгареевPeri Innovations
 
Fraudpointer - Google Apps integration
Fraudpointer  - Google Apps integrationFraudpointer  - Google Apps integration
Fraudpointer - Google Apps integrationFraudpointer.com
 
An introduction to Microsoft Graph for developers
An introduction to Microsoft Graph for developersAn introduction to Microsoft Graph for developers
An introduction to Microsoft Graph for developersMicrosoft 365 Developer
 
Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...
Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...
Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...Mahmoud Hamed Mahmoud
 

La actualidad más candente (19)

iOS & Android App Indexing & App Actions
iOS & Android App Indexing & App ActionsiOS & Android App Indexing & App Actions
iOS & Android App Indexing & App Actions
 
Microsoft identity platform developer community call-October 2019
Microsoft identity platform developer community call-October 2019Microsoft identity platform developer community call-October 2019
Microsoft identity platform developer community call-October 2019
 
Deep linking slides
Deep linking slidesDeep linking slides
Deep linking slides
 
Deep dive into SharePoint 2013 hosted apps - Chris OBrien
Deep dive into SharePoint 2013 hosted apps - Chris OBrienDeep dive into SharePoint 2013 hosted apps - Chris OBrien
Deep dive into SharePoint 2013 hosted apps - Chris OBrien
 
Android Deep Linking
Android Deep Linking  Android Deep Linking
Android Deep Linking
 
Deep linking
Deep linkingDeep linking
Deep linking
 
Developer’s Independence Day: Introducing the SharePoint App Model
Developer’s Independence Day:Introducing the SharePoint App ModelDeveloper’s Independence Day:Introducing the SharePoint App Model
Developer’s Independence Day: Introducing the SharePoint App Model
 
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
 
App Model For SharePoint 2013
App Model For SharePoint 2013App Model For SharePoint 2013
App Model For SharePoint 2013
 
Power Apps community call-June 2020
Power Apps community call-June 2020Power Apps community call-June 2020
Power Apps community call-June 2020
 
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
 
UaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing APIUaMobitech - App Links and App Indexing API
UaMobitech - App Links and App Indexing API
 
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted AppsSharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
SharePoint 2013 “App Model” Developing and Deploying Provider Hosted Apps
 
Google APIs
Google APIsGoogle APIs
Google APIs
 
Microsoft Graph developer community call-March 2020
Microsoft Graph developer community call-March 2020Microsoft Graph developer community call-March 2020
Microsoft Graph developer community call-March 2020
 
Firebase. Предмет и область применения — Тимур Ахметгареев
Firebase. Предмет и область применения — Тимур АхметгареевFirebase. Предмет и область применения — Тимур Ахметгареев
Firebase. Предмет и область применения — Тимур Ахметгареев
 
Fraudpointer - Google Apps integration
Fraudpointer  - Google Apps integrationFraudpointer  - Google Apps integration
Fraudpointer - Google Apps integration
 
An introduction to Microsoft Graph for developers
An introduction to Microsoft Graph for developersAn introduction to Microsoft Graph for developers
An introduction to Microsoft Graph for developers
 
Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...
Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...
Exam 70-488 Developing Microsoft SharePoint Server 2013 Core Solutions Learni...
 

Destacado

Measuring Social Media ROI
Measuring Social Media ROIMeasuring Social Media ROI
Measuring Social Media ROIHubSpot
 
Insider Tips for AdWords Ad Optimization
Insider Tips for AdWords Ad OptimizationInsider Tips for AdWords Ad Optimization
Insider Tips for AdWords Ad OptimizationFrederick Vallaeys
 
What the Heck is Inbound Marketing? HubSpot
What the Heck is Inbound Marketing? HubSpotWhat the Heck is Inbound Marketing? HubSpot
What the Heck is Inbound Marketing? HubSpotHubSpot
 
网络活动策划专题
网络活动策划专题网络活动策划专题
网络活动策划专题mumian
 
Your daily social media routine - stuff that matters
Your daily social media routine - stuff that mattersYour daily social media routine - stuff that matters
Your daily social media routine - stuff that mattersIan Lurie
 
Ppt for profile of portfolio
Ppt for profile of portfolioPpt for profile of portfolio
Ppt for profile of portfoliochjohnson80
 
L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...
L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...
L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...Sempo Italia
 
Dear RAs, I want you to STOP PROGRAMMING!
Dear RAs, I want you to STOP PROGRAMMING!Dear RAs, I want you to STOP PROGRAMMING!
Dear RAs, I want you to STOP PROGRAMMING!Paul Brown
 
2015 五一礼品ppt-橙乐科技
2015 五一礼品ppt-橙乐科技2015 五一礼品ppt-橙乐科技
2015 五一礼品ppt-橙乐科技Yuri Peng
 
Website Optimization Tips for Maximum Lead Flow #DF11
Website Optimization Tips for Maximum Lead Flow #DF11Website Optimization Tips for Maximum Lead Flow #DF11
Website Optimization Tips for Maximum Lead Flow #DF11HubSpot
 
INBOUND Bold Talks: Ann Handley
INBOUND Bold Talks: Ann HandleyINBOUND Bold Talks: Ann Handley
INBOUND Bold Talks: Ann HandleyHubSpot
 
I date 2015 gamification trends & insights
I date 2015   gamification trends & insightsI date 2015   gamification trends & insights
I date 2015 gamification trends & insightsShannon Ong
 
User research
User researchUser research
User researchUxshiraz
 
Meidata Opensee - Social Media Analysis in the Service of Market Research
Meidata Opensee - Social Media Analysis in the Service of Market ResearchMeidata Opensee - Social Media Analysis in the Service of Market Research
Meidata Opensee - Social Media Analysis in the Service of Market ResearchMeidata
 
Trick or Tweet! 13 Tweetable Content Marketing Tips
Trick or Tweet! 13 Tweetable Content Marketing TipsTrick or Tweet! 13 Tweetable Content Marketing Tips
Trick or Tweet! 13 Tweetable Content Marketing TipsKapost
 

Destacado (19)

Measuring Social Media ROI
Measuring Social Media ROIMeasuring Social Media ROI
Measuring Social Media ROI
 
Insider Tips for AdWords Ad Optimization
Insider Tips for AdWords Ad OptimizationInsider Tips for AdWords Ad Optimization
Insider Tips for AdWords Ad Optimization
 
What the Heck is Inbound Marketing? HubSpot
What the Heck is Inbound Marketing? HubSpotWhat the Heck is Inbound Marketing? HubSpot
What the Heck is Inbound Marketing? HubSpot
 
网络活动策划专题
网络活动策划专题网络活动策划专题
网络活动策划专题
 
Your daily social media routine - stuff that matters
Your daily social media routine - stuff that mattersYour daily social media routine - stuff that matters
Your daily social media routine - stuff that matters
 
Ppt for profile of portfolio
Ppt for profile of portfolioPpt for profile of portfolio
Ppt for profile of portfolio
 
L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...
L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...
L’impatto dei Motori di Ricerca sui processi d’acquisto: l’integrazione della...
 
Dear RAs, I want you to STOP PROGRAMMING!
Dear RAs, I want you to STOP PROGRAMMING!Dear RAs, I want you to STOP PROGRAMMING!
Dear RAs, I want you to STOP PROGRAMMING!
 
2015 五一礼品ppt-橙乐科技
2015 五一礼品ppt-橙乐科技2015 五一礼品ppt-橙乐科技
2015 五一礼品ppt-橙乐科技
 
Website Optimization Tips for Maximum Lead Flow #DF11
Website Optimization Tips for Maximum Lead Flow #DF11Website Optimization Tips for Maximum Lead Flow #DF11
Website Optimization Tips for Maximum Lead Flow #DF11
 
INBOUND Bold Talks: Ann Handley
INBOUND Bold Talks: Ann HandleyINBOUND Bold Talks: Ann Handley
INBOUND Bold Talks: Ann Handley
 
Trabajo cooperativo
Trabajo cooperativoTrabajo cooperativo
Trabajo cooperativo
 
Make It!
Make It! Make It!
Make It!
 
I date 2015 gamification trends & insights
I date 2015   gamification trends & insightsI date 2015   gamification trends & insights
I date 2015 gamification trends & insights
 
AltaMente
AltaMenteAltaMente
AltaMente
 
iThinkMedia SEO Copywriting
iThinkMedia SEO Copywriting iThinkMedia SEO Copywriting
iThinkMedia SEO Copywriting
 
User research
User researchUser research
User research
 
Meidata Opensee - Social Media Analysis in the Service of Market Research
Meidata Opensee - Social Media Analysis in the Service of Market ResearchMeidata Opensee - Social Media Analysis in the Service of Market Research
Meidata Opensee - Social Media Analysis in the Service of Market Research
 
Trick or Tweet! 13 Tweetable Content Marketing Tips
Trick or Tweet! 13 Tweetable Content Marketing TipsTrick or Tweet! 13 Tweetable Content Marketing Tips
Trick or Tweet! 13 Tweetable Content Marketing Tips
 

Similar a Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015

Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015MobileMoxie
 
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...Search Marketing Expo - SMX
 
How App Indexation Works
How App Indexation WorksHow App Indexation Works
How App Indexation WorksSerenaPearson2
 
Emily Grossman App Indexing SMX West 2017
Emily Grossman App Indexing SMX West 2017Emily Grossman App Indexing SMX West 2017
Emily Grossman App Indexing SMX West 2017MobileMoxie
 
Search APIs & Universal Links
Search APIs & Universal LinksSearch APIs & Universal Links
Search APIs & Universal LinksYusuke Kita
 
Google & Bing App Indexing - SMX Munich 2016
Google & Bing App Indexing - SMX Munich 2016Google & Bing App Indexing - SMX Munich 2016
Google & Bing App Indexing - SMX Munich 2016MobileMoxie
 
Infinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana BaoticInfinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana BaoticInfinum
 
An IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
An IT Pro Guide to Deploying and Managing SharePoint 2013 AppsAn IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
An IT Pro Guide to Deploying and Managing SharePoint 2013 AppsRandy Williams
 
OpenSocial Intro
OpenSocial IntroOpenSocial Intro
OpenSocial IntroPamela Fox
 
Confessions of-a-gadget-holic
Confessions of-a-gadget-holicConfessions of-a-gadget-holic
Confessions of-a-gadget-holicTyrell Perera
 
BarCamp KL H20 Open Social Hackathon
BarCamp KL H20 Open Social HackathonBarCamp KL H20 Open Social Hackathon
BarCamp KL H20 Open Social Hackathonmarvin337
 
300 - Multiplatform Apps on Google Cloud Platform
300 - Multiplatform Apps on Google Cloud Platform300 - Multiplatform Apps on Google Cloud Platform
300 - Multiplatform Apps on Google Cloud PlatformMobileMonday Tel-Aviv
 
Charla desarrollo de apps con sharepoint y office 365
Charla   desarrollo de apps con sharepoint y office 365Charla   desarrollo de apps con sharepoint y office 365
Charla desarrollo de apps con sharepoint y office 365Luis Valencia
 
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016MobileMoxie
 
Android Workshop
Android WorkshopAndroid Workshop
Android WorkshopJunda Ong
 
Hi5 Hackathon Presentation
Hi5 Hackathon PresentationHi5 Hackathon Presentation
Hi5 Hackathon PresentationLou Moore
 

Similar a Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015 (20)

Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
Why Deep Linking is the Next Big Thing: App Indexing - SMX East 2015
 
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...
How to Optimize Apps for Apple iOS Search and iOS 9 Universal Links By Emily ...
 
App Deep Linking
App Deep LinkingApp Deep Linking
App Deep Linking
 
How App Indexation Works
How App Indexation WorksHow App Indexation Works
How App Indexation Works
 
Emily Grossman App Indexing SMX West 2017
Emily Grossman App Indexing SMX West 2017Emily Grossman App Indexing SMX West 2017
Emily Grossman App Indexing SMX West 2017
 
Search APIs & Universal Links
Search APIs & Universal LinksSearch APIs & Universal Links
Search APIs & Universal Links
 
Google & Bing App Indexing - SMX Munich 2016
Google & Bing App Indexing - SMX Munich 2016Google & Bing App Indexing - SMX Munich 2016
Google & Bing App Indexing - SMX Munich 2016
 
Hi5 Open Social
Hi5   Open SocialHi5   Open Social
Hi5 Open Social
 
Infinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana BaoticInfinum Android Talks #16 - App Links by Ana Baotic
Infinum Android Talks #16 - App Links by Ana Baotic
 
An IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
An IT Pro Guide to Deploying and Managing SharePoint 2013 AppsAn IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
An IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
 
OpenSocial Intro
OpenSocial IntroOpenSocial Intro
OpenSocial Intro
 
Confessions of-a-gadget-holic
Confessions of-a-gadget-holicConfessions of-a-gadget-holic
Confessions of-a-gadget-holic
 
BarCamp KL H20 Open Social Hackathon
BarCamp KL H20 Open Social HackathonBarCamp KL H20 Open Social Hackathon
BarCamp KL H20 Open Social Hackathon
 
300 - Multiplatform Apps on Google Cloud Platform
300 - Multiplatform Apps on Google Cloud Platform300 - Multiplatform Apps on Google Cloud Platform
300 - Multiplatform Apps on Google Cloud Platform
 
Charla desarrollo de apps con sharepoint y office 365
Charla   desarrollo de apps con sharepoint y office 365Charla   desarrollo de apps con sharepoint y office 365
Charla desarrollo de apps con sharepoint y office 365
 
Dharmpal Verma Resume
Dharmpal Verma ResumeDharmpal Verma Resume
Dharmpal Verma Resume
 
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
Indexing on Fire: Google Firebase Native & Web App Indexing - MozCon 2016
 
Android Workshop
Android WorkshopAndroid Workshop
Android Workshop
 
Hi5 Hackathon Presentation
Hi5 Hackathon PresentationHi5 Hackathon Presentation
Hi5 Hackathon Presentation
 
Sst hackathon express
Sst hackathon expressSst hackathon express
Sst hackathon express
 

Más de Suzzicks

Fraggles & the SERP of the Future
Fraggles & the SERP of the FutureFraggles & the SERP of the Future
Fraggles & the SERP of the FutureSuzzicks
 
Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...
Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...
Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...Suzzicks
 
How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015
How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015
How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015Suzzicks
 
Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...
Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...
Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...Suzzicks
 
MozCon - Mobilegeddon
MozCon - MobilegeddonMozCon - Mobilegeddon
MozCon - MobilegeddonSuzzicks
 
The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...
The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...
The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...Suzzicks
 
Mobile Page Speed - SMX Munich 2015
Mobile Page Speed - SMX Munich 2015Mobile Page Speed - SMX Munich 2015
Mobile Page Speed - SMX Munich 2015Suzzicks
 
App Store Optimization - SMX Munich - Emily Grossman
App Store Optimization - SMX Munich - Emily GrossmanApp Store Optimization - SMX Munich - Emily Grossman
App Store Optimization - SMX Munich - Emily GrossmanSuzzicks
 
The Future of Mobile SEO - SMX Munich 2015
The Future of Mobile SEO - SMX Munich 2015The Future of Mobile SEO - SMX Munich 2015
The Future of Mobile SEO - SMX Munich 2015Suzzicks
 
Mobile SEO Geekout: Learn what to do and how to plan for mobile search
Mobile SEO Geekout: Learn what to do and how to plan for mobile searchMobile SEO Geekout: Learn what to do and how to plan for mobile search
Mobile SEO Geekout: Learn what to do and how to plan for mobile searchSuzzicks
 
Improving your Mobile-Social Interaction - On Facebook & Other Social Networks
Improving your Mobile-Social Interaction - On Facebook & Other Social NetworksImproving your Mobile-Social Interaction - On Facebook & Other Social Networks
Improving your Mobile-Social Interaction - On Facebook & Other Social NetworksSuzzicks
 
Super Fast - Mobile Page Speed's Impact on SEO
Super Fast - Mobile Page Speed's Impact on SEOSuper Fast - Mobile Page Speed's Impact on SEO
Super Fast - Mobile Page Speed's Impact on SEOSuzzicks
 
Mobile & Big Data
Mobile & Big DataMobile & Big Data
Mobile & Big DataSuzzicks
 
Page speedrankings
Page speedrankingsPage speedrankings
Page speedrankingsSuzzicks
 
Integrating Mobile In The Marketing Mix
Integrating Mobile In The Marketing MixIntegrating Mobile In The Marketing Mix
Integrating Mobile In The Marketing MixSuzzicks
 
Improving Mobile Search Engine Listings
Improving Mobile Search Engine ListingsImproving Mobile Search Engine Listings
Improving Mobile Search Engine ListingsSuzzicks
 
Mobile Search Battle
Mobile Search BattleMobile Search Battle
Mobile Search BattleSuzzicks
 
Making The Most Of Mobile
Making The Most Of MobileMaking The Most Of Mobile
Making The Most Of MobileSuzzicks
 
My Space Whoas & Woes
My Space Whoas & WoesMy Space Whoas & Woes
My Space Whoas & WoesSuzzicks
 
Death of the dotMobi
Death of the dotMobiDeath of the dotMobi
Death of the dotMobiSuzzicks
 

Más de Suzzicks (20)

Fraggles & the SERP of the Future
Fraggles & the SERP of the FutureFraggles & the SERP of the Future
Fraggles & the SERP of the Future
 
Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...
Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...
Gaming Sites Getting Mobile Friendly in a Post Mobilegeddon World -- EiG Berl...
 
How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015
How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015
How Apple's Changing Up Search: From Siri to Safari to Spotlight - SMX East 2015
 
Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...
Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...
Life After Mobilegeddon: New Strategies for Mobile SEO and App Deep Linking -...
 
MozCon - Mobilegeddon
MozCon - MobilegeddonMozCon - Mobilegeddon
MozCon - Mobilegeddon
 
The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...
The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...
The Social-Mobile Web: How to Crush Your Local Competition (Emily Grossman Ze...
 
Mobile Page Speed - SMX Munich 2015
Mobile Page Speed - SMX Munich 2015Mobile Page Speed - SMX Munich 2015
Mobile Page Speed - SMX Munich 2015
 
App Store Optimization - SMX Munich - Emily Grossman
App Store Optimization - SMX Munich - Emily GrossmanApp Store Optimization - SMX Munich - Emily Grossman
App Store Optimization - SMX Munich - Emily Grossman
 
The Future of Mobile SEO - SMX Munich 2015
The Future of Mobile SEO - SMX Munich 2015The Future of Mobile SEO - SMX Munich 2015
The Future of Mobile SEO - SMX Munich 2015
 
Mobile SEO Geekout: Learn what to do and how to plan for mobile search
Mobile SEO Geekout: Learn what to do and how to plan for mobile searchMobile SEO Geekout: Learn what to do and how to plan for mobile search
Mobile SEO Geekout: Learn what to do and how to plan for mobile search
 
Improving your Mobile-Social Interaction - On Facebook & Other Social Networks
Improving your Mobile-Social Interaction - On Facebook & Other Social NetworksImproving your Mobile-Social Interaction - On Facebook & Other Social Networks
Improving your Mobile-Social Interaction - On Facebook & Other Social Networks
 
Super Fast - Mobile Page Speed's Impact on SEO
Super Fast - Mobile Page Speed's Impact on SEOSuper Fast - Mobile Page Speed's Impact on SEO
Super Fast - Mobile Page Speed's Impact on SEO
 
Mobile & Big Data
Mobile & Big DataMobile & Big Data
Mobile & Big Data
 
Page speedrankings
Page speedrankingsPage speedrankings
Page speedrankings
 
Integrating Mobile In The Marketing Mix
Integrating Mobile In The Marketing MixIntegrating Mobile In The Marketing Mix
Integrating Mobile In The Marketing Mix
 
Improving Mobile Search Engine Listings
Improving Mobile Search Engine ListingsImproving Mobile Search Engine Listings
Improving Mobile Search Engine Listings
 
Mobile Search Battle
Mobile Search BattleMobile Search Battle
Mobile Search Battle
 
Making The Most Of Mobile
Making The Most Of MobileMaking The Most Of Mobile
Making The Most Of Mobile
 
My Space Whoas & Woes
My Space Whoas & WoesMy Space Whoas & Woes
My Space Whoas & Woes
 
Death of the dotMobi
Death of the dotMobiDeath of the dotMobi
Death of the dotMobi
 

Último

Distribution Ad Platform_ The Role of Distribution Ad Network.pdf
Distribution Ad Platform_ The Role of  Distribution Ad Network.pdfDistribution Ad Platform_ The Role of  Distribution Ad Network.pdf
Distribution Ad Platform_ The Role of Distribution Ad Network.pdfTransports Advertising
 
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROIShamsudeen Adeshokan
 
TAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdf
TAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdfTAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdf
TAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdfSocial Samosa
 
Elevating Your Digital Presence by Evitha.pdf
Elevating Your Digital Presence by Evitha.pdfElevating Your Digital Presence by Evitha.pdf
Elevating Your Digital Presence by Evitha.pdfevithatojoparel
 
2024 Social Trends Report V4 from Later.com
2024 Social Trends Report V4 from Later.com2024 Social Trends Report V4 from Later.com
2024 Social Trends Report V4 from Later.comnmislamchannal
 
Instant Digital Issuance: An Overview With Critical First Touch Best Practices
Instant Digital Issuance: An Overview With Critical First Touch Best PracticesInstant Digital Issuance: An Overview With Critical First Touch Best Practices
Instant Digital Issuance: An Overview With Critical First Touch Best PracticesMedia Logic
 
The Impact Of Social Media Advertising.pdf
The Impact Of Social Media Advertising.pdfThe Impact Of Social Media Advertising.pdf
The Impact Of Social Media Advertising.pdfishikajaiswal116
 
Gain potential customers through Lead Generation
Gain potential customers through Lead GenerationGain potential customers through Lead Generation
Gain potential customers through Lead Generationvidhyalakshmiveerapp
 
SP Search Term Data Optimization Template.pdf
SP Search Term Data Optimization Template.pdfSP Search Term Data Optimization Template.pdf
SP Search Term Data Optimization Template.pdfPauleneNicoleLapira
 
The Art of sales from fictional characters.
The Art of sales from fictional characters.The Art of sales from fictional characters.
The Art of sales from fictional characters.Bharathi sakthi
 
VIP Call Girls Dongri WhatsApp +91-9833363713, Full Night Service
VIP Call Girls Dongri WhatsApp +91-9833363713, Full Night ServiceVIP Call Girls Dongri WhatsApp +91-9833363713, Full Night Service
VIP Call Girls Dongri WhatsApp +91-9833363713, Full Night Servicemeghakumariji156
 
[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies UncoveredSearch Engine Journal
 
SALES-PITCH-an-introduction-to-sales.pptx
SALES-PITCH-an-introduction-to-sales.pptxSALES-PITCH-an-introduction-to-sales.pptx
SALES-PITCH-an-introduction-to-sales.pptx23397013
 
The 9th May Incident in Pakistan A Turning Point in History.pptx
The 9th May Incident in Pakistan A Turning Point in History.pptxThe 9th May Incident in Pakistan A Turning Point in History.pptx
The 9th May Incident in Pakistan A Turning Point in History.pptxelizabethella096
 
Crypto Quantum Leap - Digital - membership area
Crypto Quantum Leap -  Digital - membership areaCrypto Quantum Leap -  Digital - membership area
Crypto Quantum Leap - Digital - membership areajaynee G
 
W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...William (Bill) H. Bender, FCSI
 
HITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITY
HITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITYHITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITY
HITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITYNiteshKumar82226
 
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfMicro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfPiyush Kumar
 
Aiizennxqc Digital Marketing | SEO & SMM
Aiizennxqc Digital Marketing | SEO & SMMAiizennxqc Digital Marketing | SEO & SMM
Aiizennxqc Digital Marketing | SEO & SMMaiizennxqc
 

Último (20)

Distribution Ad Platform_ The Role of Distribution Ad Network.pdf
Distribution Ad Platform_ The Role of  Distribution Ad Network.pdfDistribution Ad Platform_ The Role of  Distribution Ad Network.pdf
Distribution Ad Platform_ The Role of Distribution Ad Network.pdf
 
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
10 Email Marketing Best Practices to Increase Engagements, CTR, And ROI
 
TAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdf
TAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdfTAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdf
TAM_AdEx-Cross_Media_Report-Banking_Finance_Investment_(BFSI)_2023.pdf
 
Elevating Your Digital Presence by Evitha.pdf
Elevating Your Digital Presence by Evitha.pdfElevating Your Digital Presence by Evitha.pdf
Elevating Your Digital Presence by Evitha.pdf
 
2024 Social Trends Report V4 from Later.com
2024 Social Trends Report V4 from Later.com2024 Social Trends Report V4 from Later.com
2024 Social Trends Report V4 from Later.com
 
4 TRIK CARA MENGGUGURKAN JANIN ATAU ABORSI KANDUNGAN
4 TRIK CARA MENGGUGURKAN JANIN ATAU ABORSI KANDUNGAN4 TRIK CARA MENGGUGURKAN JANIN ATAU ABORSI KANDUNGAN
4 TRIK CARA MENGGUGURKAN JANIN ATAU ABORSI KANDUNGAN
 
Instant Digital Issuance: An Overview With Critical First Touch Best Practices
Instant Digital Issuance: An Overview With Critical First Touch Best PracticesInstant Digital Issuance: An Overview With Critical First Touch Best Practices
Instant Digital Issuance: An Overview With Critical First Touch Best Practices
 
The Impact Of Social Media Advertising.pdf
The Impact Of Social Media Advertising.pdfThe Impact Of Social Media Advertising.pdf
The Impact Of Social Media Advertising.pdf
 
Gain potential customers through Lead Generation
Gain potential customers through Lead GenerationGain potential customers through Lead Generation
Gain potential customers through Lead Generation
 
SP Search Term Data Optimization Template.pdf
SP Search Term Data Optimization Template.pdfSP Search Term Data Optimization Template.pdf
SP Search Term Data Optimization Template.pdf
 
The Art of sales from fictional characters.
The Art of sales from fictional characters.The Art of sales from fictional characters.
The Art of sales from fictional characters.
 
VIP Call Girls Dongri WhatsApp +91-9833363713, Full Night Service
VIP Call Girls Dongri WhatsApp +91-9833363713, Full Night ServiceVIP Call Girls Dongri WhatsApp +91-9833363713, Full Night Service
VIP Call Girls Dongri WhatsApp +91-9833363713, Full Night Service
 
[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered[Expert Panel] New Google Shopping Ads Strategies Uncovered
[Expert Panel] New Google Shopping Ads Strategies Uncovered
 
SALES-PITCH-an-introduction-to-sales.pptx
SALES-PITCH-an-introduction-to-sales.pptxSALES-PITCH-an-introduction-to-sales.pptx
SALES-PITCH-an-introduction-to-sales.pptx
 
The 9th May Incident in Pakistan A Turning Point in History.pptx
The 9th May Incident in Pakistan A Turning Point in History.pptxThe 9th May Incident in Pakistan A Turning Point in History.pptx
The 9th May Incident in Pakistan A Turning Point in History.pptx
 
Crypto Quantum Leap - Digital - membership area
Crypto Quantum Leap -  Digital - membership areaCrypto Quantum Leap -  Digital - membership area
Crypto Quantum Leap - Digital - membership area
 
W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...W.H.Bender Quote 61 -Influential restaurant and food service industry network...
W.H.Bender Quote 61 -Influential restaurant and food service industry network...
 
HITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITY
HITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITYHITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITY
HITECH CITY CALL GIRL IN 9234842891 💞 INDEPENDENT ESCORT SERVICE HITECH CITY
 
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdfMicro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
Micro-Choices, Max Impact Personalizing Your Journey, One Moment at a Time.pdf
 
Aiizennxqc Digital Marketing | SEO & SMM
Aiizennxqc Digital Marketing | SEO & SMMAiizennxqc Digital Marketing | SEO & SMM
Aiizennxqc Digital Marketing | SEO & SMM
 

Life After Mobilegeddon: App Deep Linking Strategies - Pubcon October 2015

Notas del editor

  1. Packs often float to the top, pushing web results below the fold Traffic May Drop Even if You Maintain 1st Place Ranking High correlation between rankings and exact match keywords Only higher-than-average rated apps (avg. 3.5-4 stars min)
  2. Once upon a time, all apps lived in App Stores. You can think of the app store like a book store where all the books are shrink wrapped and you’re picking something out based on the cover and a small summary of text. Not a super ideal way to decide on a book unless you happen to already know what’s inside.
  3. Now this also posed a major problem for google whose mission has been to organize the world’s information and make it universally accessible. If you’re only able to organize app information by what the developer says it’s about, you’re not doing much better than recommending a book based on its shrink-wrapped jacket summary.
  4. A much better solution would be to organize and suggest apps based on the specific content within apps, such as a specific restaurant instead of the OpenTable overall app description. And this is exactly what Search Engines like Google and Bing and now Apple are trying to do with deep linking.
  5. Deep Links between your website and your app may improve your website rankings in mobile search
  6. Until recently, Google’s App Indexing API has been used solely to index previously-viewed android deep links for inclusion in Google’s autocomplete, but now it’s Google’s preferred method for app indexing. This is because, if your app supports HTTP scheme URLs, Google can now use the App Indexing API to discover new screens in your app as they are created. This is great for Google because they no longer have to rely on their web crawler to find App Screen URLs.
  7. Add google play services to your project, then modify activities to support the App Indexing API Bonus: https://github.com/google/santa-tracker-android Google open-sourced a project that uses the App Indexing API so you (or your developers) can go snoop
  8. Add google play services to your project, then modify activities to support the App Indexing API Bonus: https://github.com/google/santa-tracker-android Google open-sourced a project that uses the App Indexing API so you (or your developers) can go snoop
  9. Required for Android apps if you’re not using the API. Create a new XML file, res/xml/noindex.xml, and put it in your app's XML resources directory.
  10. Verify website in Google Play and then log into Google Search console using Google Play account
  11. Universal Links allow one URL to open content on either the web, or content in an app. And they work by specifying the path to sections of an app with a JSON file on a website. The domain is securely associated with your app using an SSL cert to sign a file that is stored on your secure web server
  12. The domain is securely associated with your app using an SSL cert to sign a file that is stored on your secure web server *you’re sending a sitemap for your app
  13. The domain is securely associated with your app using an SSL cert to sign a file that is stored on your secure web server *you’re sending a sitemap for your app
  14. The domain is securely associated with your app using an SSL cert to sign a file that is stored on your secure web server *you’re sending a sitemap for your app
  15. The domain is securely associated with your app using an SSL cert to sign a file that is stored on your secure web server *you’re sending a sitemap for your app
  16. Sort of like the iOS version of the App Indexing API
  17. Not just in search *queries* in Spotlight, Siri, and Safari, but also in Siri Suggestions in Spotlight. Now if you’re paying attention to this slide, you may notice that there are some pretty personal results showing up here, like a calendar event and a playback on a podcast that notes it was listened to “yesterday”… Apple is able to surface these incredibly user-specific style results because…
  18. Apple has two indexes, a device index for private content and a public cloud index for public content. Apps can have both kinds of screens. EX. an Airbnb listing may be a public screen, while a message between a host and a guest would be a private screen. In Apple search, both of these results can surface from the same query. Users will likely never know which index their search results are coming from, but this is very important for developers and marketers to understand as we set our iOS apps up for Apple app indexing.
  19. There are 3 different methods for apple app indexing, and each method is a little different.
  20. Don’t forget to implement UIApplication delegate so this can be opened in your app later
  21. And again the same UIApplication delegate we used for handoff is called when the app is opened from a corespotlight search result
  22. Once you’ve set all of this up, you need to make sure Applebot knows your website exists. And the easiest way to do this is to include it in your Support URL or Marketing URL fields in iTunes Connect when you submit your app to the store.
  23. https://search.developer.apple.com/appsearch-validation-tool/ http://bit.ly/applesearchvalidator
  24. Sdtimes.com