EaseBaidu
  • 概述
  • 开始
    • 安装
  • 熊掌号
    • 入门
    • 服务端
    • 网页授权
    • 消息
    • 消息群发
    • 模板消息
    • 用户
    • 用户标签
    • 菜单管理
    • 主页管理
    • 数据统计
    • 素材管理
    • 临时素材
    • 客服消息
    • JSSDK
  • 熊掌号TP
    • 入门
    • 服务端
    • 代授权
  • 智能小程序
    • 入门
    • 消息模板
    • 消息解密
    • 熊掌号登录
  • 智能小程序TP
    • 入门
    • 代授权
    • 小程序登录
    • 基础信息
    • 图片上传
    • 服务器
    • 包管理
Powered by GitBook
On this page

Was this helpful?

  1. 智能小程序TP

基础信息

基础信息设置

获取小程序类目:

$smart->$smart->getAllCategories();

修改小程序类目:

$smart->updateCategory(array $category);

修改小程序icon:

$smart->updateIcon(string $image_url);

修改功能介绍:

$smart->updateSignature(string $signature);

暂停服务:

$smart->pause();

开启服务:

$smart->resume();

获取二维码:

$smart->qrcode(string $path = null, string $package_id = null, int $width = 200);

小程序名称设置及改名:

$smart->setNickname(string $nick_name);

设置最低基础库版本:

$smart->setSupportVersion(string $version);

查询当前设置的最低基础库版本及各版本列表:

$smart->getSupportVersion();
Previous小程序登录Next图片上传

Last updated 6 years ago

Was this helpful?