RTX的api開發實例
2020-12-13 05:23
标签:blog http 使用 os strong 文件 io width 值得提醒的是这些接口都需要设置访问权限不然访问时会提醒“IP受限制” RTX Server强加了SDK访问安性,因此通过http方式访问cgi文件需要在SDKProperty.xml添加远程访问机器的IP地址,如下图所示,允许192.168.10.100通过http方式访问cgi文件 GetImage.cgi 仅支持GET传值 @param string receiver RTX用户名 @return 用户状态图片 @example http://localhost:8012/GetImage.cgi?receiver=XXXX GetMobile.cgi 支持GET与POST传值 @param string receiver RTX用户名 @return 用户手机 @example http://localhost:8012/GetMobile.cgi?receiver=XXXX GetSession.cgi 支持GET与POST传值 @param string receiver RTX用户名 @return RTX用户session @example http://localhost:8012/GetSession.cgi?receiver=XXXX Login.php 仅支持GET @param string user RTX用户名 @param string pwd RTX密码 @return string 正确输出true 用户或密码错误输出false 参数缺失输出params is null @example http://localhost:8012/Login.php?user=XXXX&pwd=XXXX SendIM.cgi 支持GET与POST传值 参数顺序随意 @param string sender 发消息人RTXid @param string pwd 发送消息人RTX密码 @param string receivers 接收人(多个接收人之间使用,隔开) @param string msg 消息内容 @param string sessionid RTX session @return string @example http://localhost:8012/SendIM.cgi?sender=XXXX&pwd=XXX&receivers=A;B&msg=CS么&sessionid=XXXX SendNotify.cgi 支持GET与POST传值 参数顺序随意 @param string title 通知标题 @param string msg 通知内容 @param string receiver 接收人(多个接收人之间使用,隔开,若为空表示广播)[option] @param int delaytime 消息提醒框的停留时间(毫秒),0表示不自动消失 @param string okurl 成功后IE自动定位到指定的url 格式类似为:okurl=rtx.tencent.com 或者okurl=http://tx.tencent.com 注意:这里的url必须为绝对地址[option] @param string errurl 失败后IE自动定位到指定的url[option] @example http://localhost:8012/SendNotify.cgi?title=XXXX&msg=吃饭了&receiver=A;B&delaytime=2000 SendSMS.cgi 支持GET与POST传值 参数顺序随意 @param string msg 短信内容 @param string receiver 接收人(多个接收人之间使用,隔开) @param string sender 发送人 @param string okurl 成功后IE自动定位到指定的url 格式类似为:okurl=rtx.tencent.com 或者okurl=http://tx.tencent.com 注意:这里的url必须为绝对地址[option] @param string errurl 失败后IE自动定位到指定的url[option] @example http://localhost:8012/SendNotify.cgi?title=XXXX&msg=吃饭了&receiver=A;B&delaytime=2000 SignAuth.cgi @param string user RTX用户ID @param string sign 签名 @return string 成功为success! 失败为failed! @example http://localhost:8012/SignAuth.cgi?user=XXXX&sign=XXXX getstatus.php @param string username RTX用户名 @return int 0不在线 1在线 @example http://localhost:8012/getstatus.php?username=XXXX userlist.php @return string 用户列表(json) @example http://localhost:8012/userlist.php RTX的api開發實例,搜素材,soscw.com RTX的api開發實例 标签:blog http 使用 os strong 文件 io width 原文地址:http://www.cnblogs.com/see7di/p/3866115.htmlRTX的api開發實例
最近接觸了RTX的接口開發部份,RTX其实有很多玩法,除了可以用自帶的客戶端發消息之外還可以用PHP調用API的方式來做一些事情,下邊整理了一下分享給大家
以下为所有接口的清单,你也可以访问这个地方来查看相关的API http://rtx.tencent.com/sdk/
获取指定用户的状态图片
获取指定用户的手机号码
获取指定用户的RTX session
判断指定用户ID与密码是否存在RTXserver中
发送IM信息
发送通知信息
发送短信信息
验证签名 仅支持GET 参数顺序随意
获取用户在线状态仅支持GET
获取所有用户列表(只含id与name)
上一篇:php给图片加水印