热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

整理import_整理一些常见的app跳转schemeurl

今天整理脚本时,发现存了挺多跳转app的代码,大部分是我在百度上搜索得来的,所以你们也不用问我获取方法了,用就完了。当然之前

今天整理脚本时,发现存了挺多跳转app的代码,大部分是我在百度上搜索得来的,所以你们也不用问我获取方法了,用就完了。当然之前我也写过一个快手的提取scheme url的方法,想学的话在我公众号(3分钟学堂)历史文章自行搜索。
多余的话我就不多说了直接上代码。

注:向右滑动可以查看完整代码。
抖音作品页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d snssdk1128://aweme/detail/6814634004747193615")

抖音个人主页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d snssdk1128://user/profile/104969411706")

抖音直播间

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d snssdk1128://live?room_id=6877669115163577099")

快手作品页

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d kwai://work/5221923782104138503")

快手个人主页

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d kwai://profile/1162429530")

快手直播间

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d kwai://live/play/nxBwp_TQa3M")

快手极速版作品页

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d ksnebula://work/5221923782104138503")

快手极速版个人页

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d ksnebula://profile/1162429530")

打开QQ临时对话

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d mqqwpa://im/chat?chat_type=wpa'&'uin=453485278'&'version=1")

打开群名片

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d mqqapi://card/show_pslcard?src_type=internal'&'version=1'&'uin=78237147'&'card_type=group'&'source=qrcode")

QQ群成员列表

Import "shanhai.lua"Dim 群号=850130168ShanHai.execute ("am start -n 'com.tencent.mobileqq/com.tencent.mobileqq.activity.TroopMemberListActivity' -e 'troop_uin' "&群号)

用QQ打开网址

Import "shanhai.lua"Dim uri="http://www.wangzhuan800.com"shanhai.execute ("am start -n com.tencent.mobileqq/com.tencent.biz.pubaccount.PublicAccountBrowser --es 'url' "&uri)

用QQ打开网址第二种,仅限打开腾讯自家网址

Import "shanhai.lua"Dim Base64加密=ShanHai.Base64En("https://mqq.tenpay.com/v2/hybrid/www/mobile_qq/payment/index.shtml?_wv=1027&from=13&_vacf=qw")shanhai.execute("am start -a android.intent.action.VIEW -d mqqapi://forward/url?url_prefix="&Base64加密&"'&'version=1'&'src_type=web")

QQ个人资料页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d mqqapi://card/show_pslcard?src_type=internal'&'source=sharecard'&'version=1'&'uin=453485278")

打开微信好友

Import "shanhai.lua"Dim 微信号id="wxid_q57bixvy5ptx22"ShanHai.execute ("am start -n 'com.tencent.mm/com.tencent.mm.ui.chatting.ChattingUI' -e 'Chat_User' "&微信号id)

打开微信群

Import "shanhai.lua"Dim 群id="19960697439@chatroom"ShanHai.execute ("am start -n 'com.tencent.mm/com.tencent.mm.ui.chatting.ChattingUI' -e 'Chat_User' " & 群id)

打开朋友圈

Import "shanhai.lua"Dim 微信id="wxid_q57bixvy5ptx22"ShanHai.execute ("am start -n 'com.tencent.mm/com.tencent.mm.plugin.sns.ui.SnsUserUI' -e 'sns_userName' " & 微信id)

打开指定本地图片

Import "shanhai.lua"shanhai.execute ("am start -a android.intent.action.VIEW -d file:///sdcard/pictures/1.png -t image/*")

新浪微博聊天

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d sinaweibo://messagelist?uid=7189409646")

新浪微博个人主页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d sinaweibo://userinfo?uid=5281885901")

打开新浪微博内容页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d sinaweibo://detail?mblogid=JmLMXocIG")

新浪搜索指定内容

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d sinaweibo://searchall?q=按键精灵安卓版教程")

小红书内容页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d xhsdiscover://item/5f5b3fbc0000000001004c3e")

小红书个人主页

Import "shanhai.lua"shanhai.execute("am start -a android.intent.action.VIEW -d xhsdiscover://user/5f12d8cf0000000001004c15")

好了内容就这些,如果你感兴趣帮忙点一下右下角的在看按钮。

3分钟学堂⑩群:661372264

脚本接单③群:1048041365

羊毛组4群:665162959

3分钟学堂vip②群(242971687)已经开通,群内有我的全套基础教程,在学习过程中有基础问题需要解答的朋友,可以加入此群,群费48.8元

加群联系我:

QQ:453485278

微信:xiaomu86119

更多按键精灵安卓版的内容可以查看我的往期文章教程。

d9449ef09740ed5398ee0a8577a08dec.png




推荐阅读
  • 本文介绍了一种通过设置主题(Theme)来实现快速启动的Android引导页,并详细说明了如何避免因不同屏幕分辨率导致的图片拉伸问题。 ... [详细]
  • 本文详细介绍了Elasticsearch中的分页查询机制,包括基本的分页查询流程、'from-size'浅分页与'scroll'深分页的区别及应用场景,以及两者在性能上的对比。 ... [详细]
  • iOS 百度地图使用指南:基本定位与地理编码
    本文详细介绍如何在 iOS 应用中集成百度地图,实现基本的地图定位和地理编码功能。配置详情请参考官方文档:http://developer.baidu.com/map/index.php?title=iossdk ... [详细]
  • 使用TabActivity实现Android顶部选项卡功能
    本文介绍如何通过继承TabActivity来创建Android应用中的顶部选项卡。通过简单的步骤,您可以轻松地添加多个选项卡,并实现基本的界面切换功能。 ... [详细]
  • OBS Studio自动化实践:利用脚本批量生成录制场景
    本文探讨了如何利用OBS Studio进行高效录屏,并通过脚本实现场景的自动生成。适合对自动化办公感兴趣的读者。 ... [详细]
  • Logging all MySQL queries into the Slow Log
    MySQLoptionallylogsslowqueriesintotheSlowQueryLog–orjustSlowLog,asfriendscallit.However,Thereareseveralreasonstologallqueries.Thislistisnotexhaustive:Belowyoucanfindthevariablestochange,astheyshouldbewritteninth ... [详细]
  • Flutter 核心技术与混合开发模式深入解析
    本文深入探讨了 Flutter 的核心技术,特别是其混合开发模式,包括统一管理模式和三端分离模式,以及混合栈原理。通过对比不同模式的优缺点,帮助开发者选择最适合项目的混合开发策略。 ... [详细]
  • JavaScript 实现图片文件转Base64编码的方法
    本文详细介绍了如何使用JavaScript将用户通过文件输入控件选择的图片文件转换为Base64编码字符串,适用于Web前端开发中图片上传前的预处理。 ... [详细]
  • Android开发:巧妙运用ViewStub写出类似Tab选项卡
    nsitionalENhttp:www.w3.orgTRxhtml1DTDxhtml1-transitional.dtd ... [详细]
  • 本文介绍了如何在Android应用中通过Intent调用其他应用的Activity,并提供了详细的代码示例和注意事项。 ... [详细]
  • This feature automatically validates new regions using the AWS SDK, ensuring compatibility and accuracy. ... [详细]
  • MATLAB字典学习工具箱SPAMS:稀疏与字典学习的详细介绍、配置及应用实例
    SPAMS(Sparse Modeling Software)是一个强大的开源优化工具箱,专为解决多种稀疏估计问题而设计。该工具箱基于MATLAB,提供了丰富的算法和函数,适用于字典学习、信号处理和机器学习等领域。本文将详细介绍SPAMS的配置方法、核心功能及其在实际应用中的典型案例,帮助用户更好地理解和使用这一工具箱。 ... [详细]
  • 在本文中,我们将为 HelloWorld 项目添加视图组件,以确保控制器返回的视图路径能够正确映射到指定页面。这一步骤将为后续的测试和开发奠定基础。首先,我们将介绍如何配置视图解析器,以便 SpringMVC 能够识别并渲染相应的视图文件。 ... [详细]
  • 在Android 4.4系统中,通过使用 `Intent` 对象并设置动作 `ACTION_GET_CONTENT` 或 `ACTION_OPEN_DOCUMENT`,可以从相册中选择图片并获取其路径。具体实现时,需要为 `Intent` 添加相应的类别,并处理返回的 Uri 以提取图片的文件路径。此方法适用于需要从用户相册中选择图片的应用场景,能够确保兼容性和用户体验。 ... [详细]
  • 利用Python与Android进行高效移动应用开发
    通过结合Python和Android,可以实现高效的移动应用开发。首先,需要安装Scripting Layer for Android (SL4A),这是一个开源项目,旨在为Android系统提供脚本语言支持。SL4A不仅简化了开发流程,还允许开发者使用Python等高级语言编写脚本,从而提高开发效率和代码可维护性。此外,SL4A还支持多种其他脚本语言,进一步扩展了其应用范围。通过这种方式,开发者可以快速构建功能丰富的移动应用,同时保持较高的灵活性和可扩展性。 ... [详细]
author-avatar
plz乐呵呵
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有