小程序實現內容安全, msgSecCheck 檢查一段文本是否含有違法違規內容

msgSecCheck 檢查一段文本是否含有違法違規內容npm

請求地址 :小程序

POST https://api.weixin.qq.com/wxa/msg_sec_check?access_token=ACCESS_TOKENapi

msgSecCheck 的實現須要藉助庫來請求地址, 例如 got微信

使用 npm 安裝 got 庫 :微信開發

npm install gotapp

安裝成功後

  • 還須要獲取小程序全局惟一後臺接口調用憑據 access_token

請求地址 :async

GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET函數

APPIDAPPSECRET 能在微信開發平臺 - 開發 - 開發設置 中找到.測試

功能實現以下 :ui

// 新建個雲函數文件, 例如我將其命名爲 msgSecCheck
const cloud = require('wx-server-sdk')
const got = require('got') // 引入 got 庫

cloud.init()

var appid = '你的 APPID';
var appsecret = '你的 APPSECRET';

// 獲取 access_token 值
let tokenUrl = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' + appid + '&secret=' + appsecret 
// 文本內容檢測接口
let checkUrl = 'https://api.weixin.qq.com/wxa/msg_sec_check?access_token=' 

// 雲函數入口函數
exports.main = async (event, context) => {
  let tokenResponse = await got(tokenUrl); // 經過 got 請求 api
  let token = JSON.parse(tokenResponse.body).access_token; // JSON.parse 將數據轉換成對象獲取到具體 access_token 值
  // 文本內容檢測接口拼接 access_token 值, JSON.stringIfy 將值轉換成 JSON 字符串
  let checkResponse = await got(checkUrl + token, {
    body: JSON.stringify({
      content: event.text
    })
  });
  return checkResponse.body
  
}
// 新增 msgSecCheck page
// pages/msgSecCheck/msgSecCheck.js
Page({
  msgSecCheck: function(event) {
    wx.cloud.callFunction({
      name: 'msgSecCheck',
      data: {
      // text: '有違規文字內容測試特3456書yuuo莞6543李zxcz蒜7782法fgnv級' 
      // text: '這是個正常文字測試'
      }
    }).then(res => {
      console.log(res.result);
    }) 
  } 
})

有違規內容實現效果 正常文字實現效果

相關文章
相關標籤/搜索