Open raghubb4444 opened 7 years ago
connectionid becomes available/valid on the SRConnection object after the started callback.
__weak __typeof(&*_connection)weakConnection = _connection;
self.connection.started = ^{
__weak __typeof(&*weakConnection)strongConnection = weakConnection;
id parameters = @{
@"connection_id" : (strongConnection.connectionId) ? strongConnection.connectionId : @""
};
};
I am not able to get my connectionId..How to achieve? I want to send connectionID to my server....Please help out