收藏
回答

云函数调用获取类目详情接口提示 504002 怎么处理? 类目的全量数据2M

'use strict';
const cloudbase = require("@cloudbase/node-sdk");
const rp = require('request-promise')
const app = cloudbase.init({
  env'xxxxxx'
});
const db = app.database();
exports.main = async (event, context) => {
  let access_token = await db
    .collection('access_token')
    .get()
  const cat =
    'https://api.weixin.qq.com/shop/cat/get?access_token=' + access_token.data[0].access_token
  let catinfo = await rp({
    url: cat,
    method'POST',
    body: {},
    json:true
  })
  // catinfo = JSON.parse(catinfo)
  let expires_time = parseInt(Date.now() / 1000)
  // await db
  //   .collection('catlist')
  //   .doc('efbc6d716246a0e9035d2fed153c173c')
  //   .update({
  //     third_cat_list: catinfo.third_cat_list,
  //     expires_time: expires_time
  //   })
  return catinfo
}
回答关注问题邀请回答
收藏

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2022-04-01

    存数据库里,然后自己分页查询

    2022-04-01
    有用 1
    回复 1
    • 石头
      石头
      2022-04-01
      解决了  感谢
      2022-04-01
      回复
登录 后发表内容