yeah, i think this is it, see https://developer.pebble.com/guides/...#account-token Since we don't give users ability to login - the accounToken is always empty, and the current implementation is faking it: Code: // We do not have any account system, so we just fake something up. ... if (token.isEmpty()) { token = QUuid::createUuid().toString(); It means all apps relying on account token won't work till we fix that. It also means that current implementation guarantees anonymity %) unfortunately my mitmproxy dump from android has been done with already logged in account, so I don't have that exchange captured. Need to re-iterate the process. BTW it was the same on pebbled, the implementation in jskitobjects.cpp is identical,
// We do not have any account system, so we just fake something up. ... if (token.isEmpty()) { token = QUuid::createUuid().toString();