Missing authData of parse user

894 views Asked by At

I' m having bit of a problem with parse android library. Auth data of the users is missing in results of query. Therefore ParseTwitterUtils can't tell if the user is linked or not.

2

There are 2 answers

0
Mukul On BEST ANSWER

In case anyone needs help with this, after reading through old parse community forum i found a similar question https://parse.com/questions/cant-access-authdata-on-the-user-object-cloud-code . The answer given there by Hector(Parser) is : try issuing a fetch() on the user; this should populate the authData field.

0
zagu On

authData contains sensitive information about the Parse.User so the only way you can get it is if the user object is retrieved by login (user logs in and session token is valid) or by using the Master Key when doing the query.