码迷,mamicode.com
首页 > Web开发 > 详细

PHP链接xmpp,openfire新增用户,聊天室

时间:2021-03-12 12:32:39      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:fir   src   run   bool   chat   jsp   就是   code   使用   

https://blog.csdn.net/qq_35140728/article/details/77248281

1.到http://www.igniterealtime.org/projects/openfire/plugins.jsp下载一个插件REST API。
技术图片
这个插件的作用就是允许程序设计师通过http管理openfire的用户。
部署以后默认REST API是没有开启的,你需要到后台开启并且设置验证码,为了确保安全你也许还要设置一个安全的ip。
image.png
服务器部署完成。
2.PHP代码连接OpenFire服务器。

我这边举个简单的例子 例如添加用户。
首先查看REST API 文档(http://www.igniterealtime.org/projects/openfire/plugins/restapi/readme.html)
点击
Create a user
Examples
JSON Examples
然后
技术图片
随后实例化PHP类Openfire(https://github.com/louislivi/openfire)

/**
* register_data 为上图json 必填参数 ,如需其他参数请自行添加。
* return $result bool 返回成功失败
*/
$register_data[username] =  testuser;
$register_data[password] =  password;
$conn = \OpenFire::getInstance(); //实例化类 
//$username =‘‘,$password=‘‘,$url=‘‘ 实例化可选参数 
//默认值:用户名(admin),密码(admin),openfire服务器地址 (http://127.0.0.1:9090)
//需要jid可使用方法$conn::get_jid()快捷获取jid,
//需先修改类中的(`static private $server_domain = ‘设置自己服务器的domain值‘;`)
//可在openfire 服务器信息中查看。
$result = $conn::run(users,$register_data); // ‘users‘是v1/后面的操作名 ,$register_data 需要传递的参数

 

最后再说两句

操作名v1/ 后面有斜线时 也得加上斜线
如:http://example.org:9090/plugins/restapi/v1/chatrooms/global 操作名为: chatrooms/global
$conn::run(‘chatrooms/global‘,$post_data);

 

PHP链接xmpp,openfire新增用户,聊天室

标签:fir   src   run   bool   chat   jsp   就是   code   使用   

原文地址:https://www.cnblogs.com/yipianchuyun/p/14516177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!