使用后端 API 发送带有图像的 Mesibo 消息

问题描述 投票:0回答:1

我使用了以下休息电话: { “op”:“消息”, "token": "我的代币",

"message": {
    "from": "from address",
    "to": "to address",
    "gid": 0,
    "type": 0,
    "expiry": 3600,
    "flags": null,
    "forced": true,
    "message": "Message with preview and other stuff.  Longer lines 22222/show preveiw",
    "url" : "image URL of image.  I can view in chrome"
}

}

消息经过并显示一个我无法单击的空图像。 我如何从后端 Java 应用程序发送可以在演示应用程序上显示的图像。

谢谢你

我尝试使用 url 选项。 预计会在演示应用程序上看到该图像。

mesibo
1个回答
0
投票

请从有效负载中删除 flags=null。

另外,请尝试以下操作。根据需要更改

to
from
token

{
    "to": "to address",
    "from": "from address",
    "message": "Hello from the backend",
    "type": 0,
    "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/Astilbe_japonica_%27Red_Sentinel%27.jpg/800px-Astilbe_japonica_%27Red_Sentinel%27.jpg"
}

用于快速测试的curl命令

curl --header "Content-Type: application/json" \
     --request POST \
     --data '{"op": "message", "token": "token", "message": {"to": "to address", "from": "from address", "message": "Hello from backend", "type": 0, "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/Astilbe_japonica_%27Red_Sentinel%27.jpg/800px-Astilbe_japonica_%27Red_Sentinel%27.jpg" }}' \
     https://api.mesibo.com/backend
© www.soinside.com 2019 - 2024. All rights reserved.