Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wx-sensitive-words

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wx-sensitive-words

微信小程序敏感词查询等常用功能

  • 1.2.0
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

使用微信小程序的敏感词过滤机制

  • 市面上敏感词过滤的库都有限制,包括微信小程序的也有一定限制,本库只能在一定程度上弱化限制,无法完全避免失败的情况。

安装

npm i -S wx-sensitive-words

使用

const WX = require("wx-sensitive-words");
const wx = new WX("appid", "secret");
// 建议此方法在用户打开小程序时调用,获取用户openid,WX类会保留最后一次获取到的openid
wx.getOpenid("小程序code");
// 检查是否包含敏感词,第二个参数为两小时内进入过小程序的用户openid,如果两小时内调用过`getOpenid`方法,则无需传入此参数
wx.sensitiveWords("敏感词", "openid").then(({ bool, message }) => {
  if (bool) {
    // 包含敏感词
  } else {
    // 不包含敏感词
  }
});

// 获取小程序二维码
const filePath = `./static/fileName.png`;
const result = await wx.getWxacodeunlimit("pages/code/code", "scene", {
  check_path: false,
  width: 280,
});
// 保存到本地
fs.writeFileSync(filePath, result);

FAQs

Package last updated on 29 Apr 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc