
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
var liusha = require('liusha')({
apiUrl:"",//流沙流量充值地址http://xxx.xxx.cn/(测试)
appid:"",//appid
appkey:""//appkey
});
//直充接口
liusha.flowTopUp({
mobile:"",//手机号
skuId:""//套餐id
},function(err,data){
//todo
});
flowTopUp : 直充到用户手机上
query : 充值结果查询
exists : 判断充值订单是否存在
success : 判断充值订单是否成功到账
balance : 查询账户余额
liusha.flowTopUp({
mobile:"",//手机号
skuId:""//套餐id
},function(err,data){
//todo
});
query:充值结果查询
liusha.query(orderId,function(err,data){
//todo
});
exists:判断充值订单是否存在
liusha.exists(orderId,function(err,data){
//todo
});
success:判断充值订单是否成功到账
//status 为可选(默认是2),0表示充值失败,1表示充值中,2表示充值成功
liusha.success(orderId,status,function(err,data){
//todo
});
balance:查询余额
liusha.balance(function(err,data){
//todo
});
FAQs
The npm package liusha receives a total of 4 weekly downloads. As such, liusha popularity was classified as not popular.
We found that liusha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.