我知道我可以使用命令
在ejabberd中创建聊天室 ejabberdctl create_room room_name muc_service xmpp_domain
我可以使用命令
向用户发送邀请 ejabberdctl send_direct_invitation room_name password reason jid1[:jid2]
有人可以告诉我如何使用ejabberd rest api做同样的事情吗?
我正在使用oauth进行身份验证。
我在ejabberd.yml文件中完成了以下配置
port: 5280
module: ejabberd_http
request_handlers:
"/websocket": ejabberd_http_ws
"/log": mod_log_http
"/oauth": ejabberd_oauth
"/api": mod_http_api
web_admin: true
http_bind: true
register: true
captcha: true
commands_admin_access: configure
commands:
- add_commands:
- user
- status
oauth_expire: 3600
oauth_access: all
并使用
在ejabberd.yml文件中启用了mod_muc_admin modules:
mod_muc_admin: {}
答案 0 :(得分:2)
使用mod_restful模块通过api访问ejabberd。如果要访问该模块,则需要在ejabberd.yml中配置以下行。
mod_restful:
api:
- path: ["admin"]
module: mod_restful_admin
params:
key: "secret"
allowed_commands: [register, unregister,status, add_rosteritem, create_room, send_direct_invitation, set_room_affiliation]
- path: ["register"]
module: mod_restful_register
params:
key: "secret"
它们在allowed_commands中声明的命令,只有那些命令可以通过api访问。因此,将来如果您想要访问此处需要添加的任何其他命令。
完成添加后,重新启动ejabberd,您可以使用postman或curl访问api
/*
Data that need to be sent for creating group.
Url : example.com:8088/api/admin/
Content-Type: application/json
{"key": "secret","command": "create_room","args": ["group1","conference.example.com","example.com"]}
*/
类似这样尝试send_direct_invitation ......
答案 1 :(得分:0)
执行创建房间的api请求
做一个卷发帖,
curl -X POST -H "Cache-Control: no-cache" -d '{
"name": "aaaaa",
"service": "bbbbb",
"host": "ccccc"
}' "http://localhost:5280/api/create_room"
或者,如果您想在单个演示文稿中添加多个房间,请在文件中添加所有房间名称,例如文件名为aaaaa
这样做一个卷曲,
curl -X POST -H "Cache-Control: no-cache" -d '{
"file": "aaaaa"
}' "http://localhost:5280/api/create_rooms_file"