deleteAuthorizeUser 取消授权的接口

deleteAuthorizeUser ^7.8

取消授权的接口

#请求参数

Prop Type Required Default Comment
thirtyCode String Y N/A 第三方的 code,中台分配的(thirtyCode 优先)
deviceId String N N/A 设备 ID

#接口调用示例

const params = {
  thirtyCode: "第三方的code,中台分配的",
  deviceId: "xxx",
};
this.$bridge
  .deleteAuthorizeUser(params)
  .then((res) => {
    this.$alert(res);
  })
  .catch((err) => {
    this.$toast(err);
  });

#接口返回示例

N / A;
posted on 2024-12-16 09:42  AtlasLapetos  阅读(8)  评论(0)    收藏  举报