在使用 XMPP4r gem 连接到我的 jabber 服务器后,我遇到了如何获取 SID 和 RID 的问题。我可以成功连接,我只需要 SID 和 RID 将其传递给 javascript。
我在这里搜索了文档,但对我没有多大帮助。
任何帮助或建议将不胜感激。谢谢!
以防万一其他人将来会遇到同样的障碍,我通过直接访问实例变量来解决这个问题,如下所示:
首先,需要httpbinding客户端,而不是客户端
require 'xmpp4r/httpbinding/client'
然后通过做连接
@client = Jabber::HTTPBinding::Client.new("your_jabber_id_with/resource")
@client.connect("your_bosh_url")
@client.auth("your_jabber_password")
实例变量是@http_sid 和@http_rid,因为它们无法访问,所以我做了
sid = @client.instance_variable_get("@http_sid")
rid = @client.instance_variable_get("@http_rid")
然后我将这些变量存储在我的会话中,以便我可以在我的 Strophe.js 客户端上使用它们。
这就是我为所有 Openfire 用户所做的:
require 'xmpp4r'
require 'xmpp4r/httpbinding/client'
class PageController < ApplicationController
def index
Jabber::debug = true
@client = Jabber::HTTPBinding::Client.new('sankalpsingha@sankalpmacbook') # This is the JID
@client.connect('http://localhost:7070/http-bind/') # This is the bosh address
@client.auth('sankalp') # This is the password
@sid = @client.instance_variable_get('@http_sid')
@rid = @client.instance_variable_get('@http_rid')
end
end