简体   繁体   English

Android Market 应用程序网址?

[英]Android Market application Url?

Is there right way to get Url to android market app ?有没有正确的方法让 Url 到 android 市场应用程序? I read some answer here but I did not success to get any ?我在这里阅读了一些答案,但我没有成功得到任何答案?

Bryan's market URL will work, but I prefer: Bryan 的市场 URL 可以使用,但我更喜欢:

market://details?id=com.example.your.package

since it will take you directly to the details page.因为它会将您直接带到详细信息页面。

For phones:对于手机:

market://search?q=pname:[name of your package here]

For example:例如:

market://search?q=pname:net.mandaria.tippytipper

For non-phones: You'll need to link to an Android Market aggregator such as appbrain:对于非手机:您需要链接到 Android Market 聚合器,例如 appbrain:

http://www.appbrain.com/app/net.mandaria.tippytipper

This should work as a standard HTML anchor tag:这应该作为标准的 HTML 锚标记工作:

https://market.android.com/search?q=pname:[name of your package here]

IE:即:

https://market.android.com/search?q=pname:com.google.earth

Similar to Bryan Denny's answer on 10/29/2010, but in regular URL format, and not the special market:// style link.类似于 Bryan Denny 在 2010 年 10 月 29 日的回答,但采用常规 URL 格式,而不是特殊的market://样式链接。

See http://developer.android.com/distribute/googleplay/promote/linking.html请参阅http://developer.android.com/distribute/googleplay/promote/linking.html

Basically, from a web site use:基本上,从网站使用:

http://play.google.com/store/apps/details?id=<package_name>

From an android app use:从 android 应用程序使用:

market://details?id=<package_name>

the apps are hosted on their own sites.这些应用程序托管在他们自己的网站上。 you can download the apps from your android mobile by visiting the market place.您可以通过访问市场从您的 android 手机下载应用程序。

https://market.android.com/details?id=com.somecompany.someapp

用你的应用包替换com.somecompany.someapp

Example for Apps details page:应用详情页面示例:

If you go如果你去

https://market.android.com/details?id=com.somecompany.someapp 

it redirects to the Google Play store它重定向到 Google Play 商店

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM