收藏
回答

OCR功能使用的CDN服务怎么计费和缴费的?

wx.chooseImage({

  count: 1,
  success: async function(res) {
    try {
      const invokeRes = await wx.serviceMarket.invokeService({
        service: 'wx79ac3de8be320b71',
        api: 'OcrAllInOne',
        data: {
          // 用 CDN 方法标记要上传并转换成 HTTP URL 的文件
          img_url: new wx.serviceMarket.CDN({
            type: 'filePath',
            filePath: res.tempFilePaths[0],
          }),
          data_type: 3,
          ocr_type: 1
        },
      })

      console.log('invokeService success', invokeRes)
      wx.showModal({
        title: 'success',
        content: JSON.stringify(invokeRes),
      })
    } catch (err) {
      console.error('invokeService fail', err)
      wx.showModal({
        title: 'fail',
        content: err,
      })
    }
  },
  fail: function(res) {},
  complete: function(res) 

在官网给的这个demo中,使用了wx.serviceMarket.CDN服务,这个服务的计费和收费是和OCR一体的吗,会不会流量超出欠费异常了,
关键我也没找到充值缴费CDN服务的地方啊?



回答关注问题邀请回答
收藏

1 个回答

  • 第三方平台小助手
    第三方平台小助手
    08-30

    你好,调用失败不会计调用次数。调用成功,但是内容没识别出来,会算入调用次数。

    缴费可在服务市场购买资源包

    具体查看https://fuwu.weixin.qq.com/service/detail/000ce4cec24ca026d37900ed551415接入说明

    08-30
    有用
    回复 1
    • Lmmmmc
      Lmmmmc
      08-30
      你好,我知道ocr的缴费入口,我的问题是,在使用ocr的时候,上传图片使用了cdn服务,这个服务是怎么收费和缴费的,我是担心用的过程中,ocr正常使用,cdn服务不能用了
      08-30
      回复
登录 后发表内容