View Single Post
Posts: 207 | Thanked: 482 times | Joined on Mar 2016
#151
yeah, i think this is it, see https://developer.pebble.com/guides/...#account-token
If the user is not logged in, the token will be an empty string
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,
 

The Following 5 Users Say Thank You to ruff For This Useful Post: