我正在试着把我的移动开发者给我的android深度链接放在一个人钻电子邮件模板中:
他给我的深层链接是:
intent://products/?batch=1#Intent;scheme=productstore;package=com.productmakers.store;end将其嵌入到模板中的正确语法是什么?我试过了:
"intent://products/?batch=1#Intent;scheme=productstore;package=com.productmakers.store;end"
<a>intent://products/?batch=1#Intent;scheme=productstore;package=com.productmakers.store;end</a>
<a>"intent://products/?batch=1#Intent;scheme=productstore;package=com.productmakers.store;end"</a>发布于 2014-05-20 10:22:51
您确定您发送的电子邮件只能在Android设备上打开吗?这些深度链接不会在其他设备上解析。
你正在尝试的链接的特定语法适用于Chrome版本的25+。https://developer.chrome.com/multidevice/android/intents
我建议使用http://urx.com/documentation将客户重定向到使用您的内容的最佳位置。只要你分享的链接有必要的元标签,它就能工作。
发布于 2015-07-06 17:19:23
像这样使用它
window.location = 'intent://products/?batch=1#Intent;scheme=productstore;package=com.productmakers.store;end'或
<a href="intent://products/?batch=1#Intent;scheme=productstore;package=com.productmakers.store;end">link text</a>我希望这能回答你的问题!
https://stackoverflow.com/questions/23743788
复制相似问题