We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
官方文档给出的示例有错误: card字段应该改为content
另外,飞书消息和飞书卡片中@用户的方式是有区别的:
飞书消息:
<at user_id="xxxx"/>
飞书卡片:
<at id="xxxx"/>
飞书富文本(我没试过):
{ "tag": "at", "user_id": "xxxx" }
而在sdk中只找到1中方式:
// com.lark.oapi.service.im.v1.model.ext.MessageText.java public Builder atUser(String userId, String name) { sb.append("<at user_id=\\\"") .append(userId) .append("\\\">") .append(name) .append("</at>"); return this; }
希望可以增加对其他方式的支持,或者能说明清楚~ 我尝试了好久一直在使用错误的字段=。=
The text was updated successfully, but these errors were encountered:
这个请求体折磨了我三天的时间才试出来,全靠猜
Sorry, something went wrong.
No branches or pull requests
官方文档给出的示例有错误:
card字段应该改为content
另外,飞书消息和飞书卡片中@用户的方式是有区别的:
飞书消息:
飞书卡片:
飞书富文本(我没试过):
而在sdk中只找到1中方式:
希望可以增加对其他方式的支持,或者能说明清楚~ 我尝试了好久一直在使用错误的字段=。=
The text was updated successfully, but these errors were encountered: