Autobahn 中的来电识别 | Python

Caller identification in Autobahn | Python

我正在尝试找出如何在 Autobahn 中公开来电者的信息|Python,如下所述:http://crossbar.io/docs/Caller-Identification/ 我在 docs 中找到以下内容:

class autobahn.wamp.message.Call(request, procedure, args=None, kwargs=None, timeout=None, receive_progress=None, disclose_me=None)

因此尝试了:

res = session.call(u'com.example.function', data, disclose_me=True)

运气不好。任何帮助将不胜感激。

好的,我明白了:

from autobahn.wamp.types import CallOptions

options = CallOptions(on_progress=None, timeout=120, disclose_me=True)
res = session.call(u'com.example.function', server_events, options=options)