sh HipChat API v2 - 使用cURL向房间发送消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh HipChat API v2 - 使用cURL向房间发送消息相关的知识,希望对你有一定的参考价值。

#!/bin/bash

# Set the ROOM_ID & AUTH_TOKEN variables below.
# Further instructions at https://www.hipchat.com/docs/apiv2/auth

ROOM_ID=XXX
AUTH_TOKEN=XXX
MESSAGE="Hello world!"

curl -H "Content-Type: application/json" \
     -X POST \
     -d "{\"color\": \"purple\", \"message_format\": \"text\", \"message\": \"$MESSAGE\" }" \
     https://api.hipchat.com/v2/room/$ROOM_ID/notification?auth_token=$AUTH_TOKEN

以上是关于sh HipChat API v2 - 使用cURL向房间发送消息的主要内容,如果未能解决你的问题,请参考以下文章

如何通过API从Hipchat获取房间的所有消息历史记录?

没有 auth_token 的 Hipchat API [关闭]

sh cu.sh

Harbor v2.0 API 无法获取Projects全部数量BUG复现

HipChat上传文件报未知错误解决方案

HipChat Nodejs Bot - 无法接收房间消息