Register Advertise with usHelp Desk Today's Posts Search

Closed Thread
Thread Tools Search this Thread
Unread 31st May 2012, 07:06 AM   #1
HyperActive Warrior
War Room Member
 
lmooney1028's Avatar
 
Join Date: 2011
Posts: 146
Thanks: 12
Thanked 57 Times in 17 Posts
Default
Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

Hi Guys,

Just getting into the whole mobile area and think its got good potential. One thing i'd like to know about QR Codes though - can i have one QR code (say like on a poster/leaflet) that directs to an app download?

If so how do i make it so that i can use one QR code and send an iPhone user to the apple app store and an android user to the android app store, etc.

Any info greatly appreciated.

"Reach for the stars - even if you fail, you'll land on top of the world"

How i got my first client: FULL CASE STUDY - Click here
lmooney1028 is offline  
Unread 31st May 2012, 07:11 AM   #2
Digital Marketer
War Room Member
 
WillR's Avatar
 
Join Date: 2010
Location: Australia
Posts: 12,475
Thanks: 1,984
Thanked 8,187 Times in 4,079 Posts
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

A QR code can only have one action. Whether it be initiating a phone call, a text message, a url, whatever. You could link to each app individually but to do so you would need to have a QR code for each app. Your other alternative is to create a simple mobile friendly page that has two buttons on it, one that links to the iPhone app and one that links to the Android app. When people scan the QR code you then send them to that webpage and they can click on the link for their device.

WillR is offline  
The Following 2 Users Say Thank You to WillR For This Useful Post:
Unread 31st May 2012, 07:25 AM   #3
HyperActive Warrior
War Room Member
 
lmooney1028's Avatar
 
Join Date: 2011
Posts: 146
Thanks: 12
Thanked 57 Times in 17 Posts
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

Originally Posted by WillR View Post

A QR code can only have one action. Whether it be initiating a phone call, a text message, a url, whatever. You could link to each app individually but to do so you would need to have a QR code for each app. Your other alternative is to create a simple mobile friendly page that has two buttons on it, one that links to the iPhone app and one that links to the Android app. When people scan the QR code you then send them to that webpage and they can click on the link for their device.
Cheers, its what i initially thought but i got misguided by another thread. Good idea on a simple landing page to redirect to the app download.

"Reach for the stars - even if you fail, you'll land on top of the world"

How i got my first client: FULL CASE STUDY - Click here
lmooney1028 is offline  
Unread 31st May 2012, 07:52 AM   #4
Web Marketing For Profit
War Room Member
 
Quentin's Avatar
 
Join Date: 2002
Location: Brisbane
Posts: 2,895
Thanks: 8
Thanked 1,162 Times in 528 Posts
Blog Entries: 10
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

Actually you can have different URL for each Operating system in one qr code when it comes to apps.



Try this on iphone and android and you will see it goes to different app download.

You can do this many in one QR Code

iPhone App
iPad App
Android App
Blackberry App
Nokia App
Microsoft App

Quentin

Quentin is offline  
Unread 31st May 2012, 09:08 AM   #5
Digital Marketer
War Room Member
 
WillR's Avatar
 
Join Date: 2010
Location: Australia
Posts: 12,475
Thanks: 1,984
Thanked 8,187 Times in 4,079 Posts
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

Originally Posted by Quentin View Post

Actually you can have different URL for each Operating system in one qr code when it comes to apps.



Try this on iphone and android and you will see it goes to different app download.

You can do this many in one QR Code

iPhone App
iPad App
Android App
Blackberry App
Nokia App
Microsoft App

Quentin
I stand corrected.

There you go, you learn something new everyday.

How's that work? I'm assuming it is detecting the user-agent and then redirecting them based on that?

WillR is offline  
Unread 31st May 2012, 09:14 AM   #6
Mobile+WP = JumpMobi.com
War Room Member
 
Jay Moreno's Avatar
 
Join Date: 2009
Location: San Antonio, Tx
Posts: 1,270
Thanks: 301
Thanked 449 Times in 309 Posts
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

you will need to use useragent detection on the page you point your QR code at - that way you can do a conditional statement based on the type of device that is viewing your web page...

ie if iphone redirect to app store - if android redirect to google play... etc

there are several ways to do this using php, javascript or a modified htaccess file

this is a very simple javascript based one to get you going.... place this before your </head> tag and replace http://www.your-destination-url-here.com with the url you want the particular visitor to be redirected to

HTML Code:
<script language="javascript">
/* <![CDATA[ */
if ((navigator.userAgent.toLowerCase().indexOf('iphone')!=-1))
{
window.location = "http://www.your-destination-url-here.com";
}


if ((navigator.userAgent.toLowerCase().indexOf('android')!=-1))
{
window.location = "http://www.your-destination-url-here.com";
}
/* ]]> */
</script> 
Hope that helps,

Cheers Jay

Sorry, I am too busy helping people to think of a cool signature!
Jay Moreno is offline  
Unread 31st May 2012, 11:08 PM   #7
Mobile+WP = JumpMobi.com
War Room Member
 
Jay Moreno's Avatar
 
Join Date: 2009
Location: San Antonio, Tx
Posts: 1,270
Thanks: 301
Thanked 449 Times in 309 Posts
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

Originally Posted by sqcd View Post

Try a QR Code Software and manage the code, that is, automate different content/URLs at different times.

See my signature for links.
what your saying doesn't make sense... are you suggesting you change periodically/randomly the destination url? that would not help an android user if they get pushed to apples app store???

the OP requires one QR code that pushes the different mobile users to the correct destination for their device...

a regular QR code wouldn't and cant handle the redirection - that needs to be done by the destination url as i mentioned above using user agent redirection/forwarding on the page the mobile visitor gets sent too.... the QR code that Quentin demonstrated the redirection is handled by the online software that hosts/generates the QR code, its that that handles the redirection you cant expect to create any old QR code at some basic QR code generation site and expect it to do that without doing applying a redirect on the destination url as i mentioned previously... we host our own QR code tracking service same as Quentin does that simplifies the generation of that redirection type of QR code...

Sorry, I am too busy helping people to think of a cool signature!
Jay Moreno is offline  
Unread 1st Jun 2012, 01:48 AM   #8
Active Warrior
War Room Member
 
Join Date: 2011
Location: UK
Posts: 33
Thanks: 4
Thanked 4 Times in 4 Posts
Blog Entries: 1
Default
Re: Little Help On QR codes for apps
Share on: 
fb share twitter share gplus share more share

I'm with you Jay, must have misread the original query. You're right, if Quentin wants to direct users based on their handset then there's more logic to be included. Our software helps to manage different redirects which can be scheduled in advance but not based on type of mobile device.

Create Your Own Mobile Ad Service
KUOOB - Everything you need to start selling personalised advertising - today. A white label solution for magazine publishers, retail and more.

QR Code Software
sqcd is offline  
Closed Thread


Bookmarks

Tags
apps, codes


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -6. The time now is 04:33 PM.