-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
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
Does it support multi-lines post message #42
Comments
May I ask what is a multi-line message? I think it's available to just use |
Great, using I saw there's a different example from the official docs to post a rich text, as follows: {
"chat_id": "oc_5ce6d572455d361153b7cb51da133945",
"msg_type": "post",
"content": {
"post": {
"zh_cn": {
"title": "I am a title",
"content": [
[
{
"tag": "text",
"un_escape": true,
"text": "line 1 :",
},
{
"tag": "a",
"text": "super link",
"href": "www.baidu.com"
},
{
"tag": "at",
"user_id": "ou_18eac85d35a26f989317ad4f02e8bbbb"
}
],
[
{
"tag": "text",
"text": "line 2 :",
},
{
"tag": "text",
"text": "text content",
}
],
[
{
"tag": "text",
"text": "",
},
{
"tag": "img",
"image_key": "b15a91e5-156d-4d81-8bac-3d27c321001b",
"width": 300,
"height": 300
}
]
]
}
}
}
} It seems currently this package do not support the above rich text. |
This is available but you may use |
Currently I found it seems do not support multi-lines message when I'm using the
PostNotificationV2
method.Am I missing something?
Will it be supported?
Thanks.
The text was updated successfully, but these errors were encountered: