发送QQ红包(root)
<pre><code class="language-js">function 发送QQ红包(friendsaccount, type) {
// friendsaccount 好友QQ号
// type:红包类型 1 为普通红包, 2 为口令红包
friendsaccount = friendsaccount.toString();
switch (type) {
case 1: {
app.startActivity({
packageName : "com.tencent.mobileqq",
className : "com.tencent.mobileqq.activity.qwallet.SendHbActivity",
extras : {
extra_data : '{"recv_type":1,"recv_uin":'+ friendsaccount +',"channel":1,"bus_type":"1"}',
app_info : "appid#1344242394|bargainor_id#1000030201|channel#aio",
},
root : true
});
break;
}
case 2: {
app.startActivity({
packageName : "com.tencent.mobileqq",
className : "com.tencent.mobileqq.activity.qwallet.SendHbActivity",
extras : {
extra_data : '{"recv_type":1,"recv_uin":'+friendsaccount+',"channel":32,"bus_type":"2","extra_info":{"redgift_type":"3","redgift_subtype":"1"}}',
app_info : "appid#1344242394|bargainor_id#1000030201|channel#aio",
},
root : true
});
break;
}
}
}
</code></pre>