cybozu

概要

 

OCR技术提供商 合合信息
企业OA系统提供商 才望子
利用这2家公司的产品,我们来做一个自动识别发票的报销app

效果图

 

关键代码

 

        const appKey = \'.....\'; // your app_key;
        const appSecret = \'......\';// your app_secret;
        const url = \'.....\';
         
        function inv(fileData) {
            const idx = fileData.indexOf(\',\');
            const img = fileData.substr(idx + 1, fileData.length - idx);
            return kintone.proxy(url + appKey, \'POST\', {
                \'content-type\': \'application/json\',
            }, {
                app_secret: appSecret,
                image_data: img
            });
        }

 

具体实现请参考:
kintone+计算机视觉---发票识别

 

更多文章和演示:Kintone demo环境

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-05-21
  • 2021-12-24
  • 2021-10-18
  • 2021-12-22
  • 2021-09-05
  • 2021-08-09
猜你喜欢
  • 2021-04-14
  • 2021-12-18
  • 2021-07-28
  • 2021-11-04
  • 2021-11-01
相关资源
相似解决方案