+
19
-

抖音小程序有没有api可以通过抖音用户id跳转到与任何人的聊天私信界面?

抖音小程序有没有api可以通过抖音用户id跳转到与任何人的聊天私信界面?


网友回复

+
25
-

抖音小程序可以跳转到你后台小程序绑定的品牌号、员工号、合作号,添加完成后就可以使用。

有三个方式实现:

1、通过按钮<button open-type="privateMessage" />实现条跳转:

<button
  open-type="privateMessage"
  data-aweme-id="{{ awemeId }}"
  bindpm="pmCallback"
  binderror="pmError"
>
  跳转私聊页
</button>

Page({
  data: {
    awemeId: "私聊对象的抖音号",
  },
  pmCallback(e) {
    console.log("跳转私聊页成功", e.detail);
  },
  pmError(e) {
    console.log("拉起私聊页失败", e.detail);
  },
});

参考:https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/compone...

点击查看剩余70%

我知道答案,我要回答