创建直接链接到谷歌播放应用程序下载

时间:2014-02-27 08:05:05

标签: php android redirect mobile google-play

我在Google Play上有一款应用。 我正在向我的客户发送短信以下载应用程序,在SMS中有一个链接到PHP页面,我将用户重定向到他的相关商店(appstore,google play)。

PHP如下所示:

$iPod    = stripos($_SERVER['HTTP_USER_AGENT'],"iPod");
$iPhone  = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");
$iPad    = stripos($_SERVER['HTTP_USER_AGENT'],"iPad");
$Android = stripos($_SERVER['HTTP_USER_AGENT'],"Android");

if( $iPod || $iPhone || $iPad){
  header('Location: ' . APPLE_DOWNLOAD_URL);
}else if($Android){
  header('Location: ' . GOOGLE_DOWNLOAD_URL);
}else {
  header('Location: ' . WEB_DOWNLOAD_URL);
}

我的Google_DOWNLOAD_URL如下:

  

https://play.google.com/store/apps/details?id=XXX

我的第一个问题 - 是否有办法将用户直接重定向到Google Play,而不会询问他如何处理该链接。我看到了一些关于市场陈述的答案://但是它没有用。

第二个问题 - 这是重定向用户关于他们使用的移动设备的最佳做法吗?

非常感谢,

1 个答案:

答案 0 :(得分:3)

你好有同样的问题。 尝试使用

market://details?id=XXX

而不是

https://play.google.com/store/apps/details?id=XXX

这会直接打开Play商店。