In my app, using PyDrive and Google Drive, a file is created by user A, saved onto Drive using
self.User.GoogleFile.SetContentString(json.dumps(self.Message))
and the file is shared with user B. When userB reads the file using
self.Message=json.loads(self.User.GoogleFile.GetContentString())
the message contains the correct data. If self.Message is modified by user A, and saved using
self.User.GoogleFile.SetContentString(json.dumps(self.Message))
then, if user B reads the file again, self.Message just contains the original data and not the updated value
Is there any way to refresh the file, or clear the cache, or any command I should run to get user B to get the up to date data?