Send Media Files
You need to send a POST request to:
https://yoai.yophone.com/api/pub/sendMessage
#
Request body params format (multipart/form-data)to
(required):
The unique identifier for the target chat or the username of the target channel.text
(required):
The text of the message to be sent.file
(required):
The path of the image file/files to be sent, up to 10 files, each with a maximum size of 50MB
#
Supported MIME Types#
Image MIME TypesThese MIME types represent commonly used image formats:
- image/jpeg โ JPEG image format, widely used for photos and web images.
- image/png โ PNG (Portable Network Graphics) format, supports transparency and lossless compression.
- image/gif โ GIF (Graphics Interchange Format), supports animations and transparency.
- image/webp โ WebP image format, developed by Google, provides superior compression with transparency and animation support.
#
Video MIME TypesThese MIME types represent video formats supported for uploads:
- video/mp4 โ MP4 (MPEG-4 Part 14), a widely supported video format with good compression.
- video/mpeg โ MPEG (Moving Picture Experts Group) video format, used for older digital video and streaming.
- video/webm โ WebM format, designed for web-based media delivery with VP8/VP9 codecs.
- video/ogg โ Ogg video format, an open-source alternative for multimedia streaming.
- video/quicktime โ QuickTime video format developed by Apple, commonly used on macOS and iOS.
#
Document MIME TypesThis MIME type represents supported document formats:
- application/pdf โ Portable Document Format (PDF), used for sharing and printing documents with fixed formatting.
#
Request examplecurl -X POST https://yoai.yophone.com/api/pub/sendMessage \-H "X-YoAI-API-Key: your YoAI api key" \-F "to=chatId" \-F "text=message" \-F "file=@/path/to/image1.jpg" \-F "file=@/path/to/image2.png"
#
Success ResponseThe API returns a JSON object indicating the success of the operation.
{ "code": 200, "success": true, "data": null}
#
Failure ResponseThe API returns a JSON object indicating the success of the operation.
{ "code": 200, "success": false, "message": "failed to send"}