<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[lobbyId ?]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">Please I have a small question about the lobby, I have been working to implement it in my new app, but there is a required parameter for some functions which is lobbyId, I don’t know where can I get this from? As I don’t receive this id in the response when I create a new lobby.</p>
<p dir="auto">I searched on the portal tutorial, api ref and the forums, but didn’t find anything, so I think am lost here.</p>
<p dir="auto">Thank you.</p>
]]></description><link>https://forums.getbraincloud.com/topic/61/lobbyid</link><generator>RSS for Node</generator><lastBuildDate>Wed, 19 Aug 2026 17:35:10 GMT</lastBuildDate><atom:link href="https://forums.getbraincloud.com/topic/61.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 21 Dec 2019 01:46:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to lobbyId ? on Sat, 21 Dec 2019 19:10:05 GMT]]></title><description><![CDATA[<p dir="auto">Doh - I didn't realize you were using that SDK - which is lagging a bit behind.</p>
<p dir="auto">We'll get the devs on that - but we've hit the holidays here in Canada and we'll be looking at an early January release then.</p>
<p dir="auto">Apologies...</p>
<p dir="auto">(Note - that SDK is based on our C++ SDK if you want to go off-road a bit to see how to add the support for yourself. Apologies for the delay!)</p>
]]></description><link>https://forums.getbraincloud.com/post/209</link><guid isPermaLink="true">https://forums.getbraincloud.com/post/209</guid><dc:creator><![CDATA[Paul Winterhalder]]></dc:creator><pubDate>Sat, 21 Dec 2019 19:10:05 GMT</pubDate></item><item><title><![CDATA[Reply to lobbyId ? on Sun, 22 Dec 2019 15:03:37 GMT]]></title><description><![CDATA[<p dir="auto">Oh okay, I understand.<br />
Yeah I was already trying to use the C++ SDK, and I will also be waiting for the Obj-C one.</p>
<p dir="auto">Thank you!</p>
]]></description><link>https://forums.getbraincloud.com/post/210</link><guid isPermaLink="true">https://forums.getbraincloud.com/post/210</guid><dc:creator><![CDATA[Kirlos Yousef]]></dc:creator><pubDate>Sun, 22 Dec 2019 15:03:37 GMT</pubDate></item><item><title><![CDATA[Reply to lobbyId ? on Sat, 21 Dec 2019 19:10:05 GMT]]></title><description><![CDATA[<p dir="auto">Doh - I didn't realize you were using that SDK - which is lagging a bit behind.</p>
<p dir="auto">We'll get the devs on that - but we've hit the holidays here in Canada and we'll be looking at an early January release then.</p>
<p dir="auto">Apologies...</p>
<p dir="auto">(Note - that SDK is based on our C++ SDK if you want to go off-road a bit to see how to add the support for yourself. Apologies for the delay!)</p>
]]></description><link>https://forums.getbraincloud.com/post/209</link><guid isPermaLink="true">https://forums.getbraincloud.com/post/209</guid><dc:creator><![CDATA[Paul Winterhalder]]></dc:creator><pubDate>Sat, 21 Dec 2019 19:10:05 GMT</pubDate></item><item><title><![CDATA[Reply to lobbyId ? on Sat, 21 Dec 2019 16:08:07 GMT]]></title><description><![CDATA[<p dir="auto">Hi Paul,</p>
<p dir="auto">Thank you for your reply.<br />
The problem is that I am using the Objective-C SDK, and I don't have _bc.RTTService, it's also written "Coming soon!" in the API ref., so how can I register a handler in this case?</p>
<p dir="auto">Thank you!</p>
<p dir="auto">Kirlos.</p>
]]></description><link>https://forums.getbraincloud.com/post/208</link><guid isPermaLink="true">https://forums.getbraincloud.com/post/208</guid><dc:creator><![CDATA[Kirlos Yousef]]></dc:creator><pubDate>Sat, 21 Dec 2019 16:08:07 GMT</pubDate></item><item><title><![CDATA[Reply to lobbyId ? on Sat, 21 Dec 2019 15:41:54 GMT]]></title><description><![CDATA[<p dir="auto">Hi Kirlos,</p>
<p dir="auto">The lobbyid is returned in the <code>MEMBER_JOIN</code> RTT event that you receive once you've been assigned to the lobby. You can see the details of the event on this page <a href="https://getbraincloud.com/apidocs/apiref/#capi-lobby" rel="nofollow ugc">https://getbraincloud.com/apidocs/apiref/#capi-lobby</a></p>
<p dir="auto">Copy-and-paste here:</p>
<pre><code>{
    "service": "lobby",
    "operation": "MEMBER_JOIN",
    "data": {
        "lobbyId": "22819:unranked:406",
        "currentTime": 1549658965234,
        "lobby": {
            "state": "setup",
            "owner": "f6fa3e0e-6aac-497a-84e1-c8db6f545c12",
            "rating": 0,
            "lobbyTypeDef": {},
            "settings": {},
            "version": 1,
            "timetable": {
                "createdAt": 1549658965234,
                "early": 1549658965234,
                "onTime": 1549659055234,
                "tooLate": 1549659145234
            },
            "numMembers": 1,
            "members": []
        },
        "member": {
            "profileId": "f6fa3e0e-6aac-497a-84e1-c8db6f545c12",
            "name": "David",
            "pic": "",
            "rating": 0,
            "team": "player1",
            "isReady": true,
            "extra": {},
            "cxId": "22819:f6fa3e0e-6aac-497a-84e1-c8db6f545c12:bvm2ga9aelaigkbdrojp3ifjrp"
        }
    }
} 
</code></pre>
<p dir="auto">To receive the events, you need to register a handler:<br />
<a href="https://getbraincloud.com/apidocs/apiref/?csharp#capi-rtt-registerrttlobbycallback" rel="nofollow ugc">https://getbraincloud.com/apidocs/apiref/?csharp#capi-rtt-registerrttlobbycallback</a></p>
<p dir="auto">I hope that helps!</p>
<p dir="auto">Paul.</p>
]]></description><link>https://forums.getbraincloud.com/post/207</link><guid isPermaLink="true">https://forums.getbraincloud.com/post/207</guid><dc:creator><![CDATA[Paul Winterhalder]]></dc:creator><pubDate>Sat, 21 Dec 2019 15:41:54 GMT</pubDate></item></channel></rss>