getLastUsedServersList

TrueConf7/5/26About 1 min

getLastUsedServersList

Description

Get the list of servers that users previously tried to connect to (the list will include both successful and unsuccessful connections). The list will be sorted by the time when the servers were connected to.

void getLastUsedServersList(int iCount)

Parameters

NameDescription
iCountThe number of previously used servers (only the last 7 are stored)

Response example

{
    "method": "getLastUsedServersList",
    "requestId" : "1",
    "lastUsedServersList": [
        "myserver1.com",
        "myserver2.com"
    ],
    "result": true
}

Response Parameters

NameDescription
lastUsedServersListArray of addresses of previously used servers
requestIdA unique request identifier
resultA flag indicating whether the request was successful

See also

Last Updated: