I want to create a web page that uses Google Drive Realtime API that allows users to anonymously edit several text fields. Because more than one user may be accessing the page simultaneously, I want to prevent someone's edit from being overwritten by another user without the first editor knowing that his edit is overwritten.
However, from the quick start, it seems that authorization using Google Account is needed for people to start editing. Is it possible to let arbritrary user edit my realtime model, without the need of logging in? Something similar to letting a Google Docs Spreadsheet be edited by the public.
I want to create a web page that uses Google Drive Realtime API that allows users to anonymously edit several text fields. Because more than one user may be accessing the page simultaneously, I want to prevent someone's edit from being overwritten by another user without the first editor knowing that his edit is overwritten.
However, from the quick start, it seems that authorization using Google Account is needed for people to start editing. Is it possible to let arbritrary user edit my realtime model, without the need of logging in? Something similar to letting a Google Docs Spreadsheet be edited by the public.
Share Improve this question asked May 20, 2013 at 4:26 Randy Sugianto 'Yuku'Randy Sugianto 'Yuku' 73.5k58 gold badges186 silver badges234 bronze badges 1- Have you found a solution to this yet? I also need to allow people without a Google account to work on the realtime model. – fkoessler Commented Jul 1, 2013 at 8:25
3 Answers
Reset to default 6Right now only psuedo-anonymous mode is available. You can make files available publicly, or to anyone with a link. However, the user will need to log in with a Google account in order to edit.
They appear as an anonymous user to the other users in the document. This is where isAnonymous is currently used.
I have confirmed that this is possible. Right click the document in Google Drive, and click Share...
In the dialog that opens, click the drop down and select Anyone with the link can edit
. Give the shareable link to whomever you need and they will be able to edit.
From a brief look at the documentation it may be available however I was unable to find anything allowing anonymous users (it seemed to require oAuth 2.0 with G+ to work). In regards to your second part, controlling users editing parts based on consent is going to get very quickly and I am unsure if you would be able to do it easily. If you want features as plex as these you may just have to implement your own realtime editing features (or try and leverage the google realtime api in some indirect way.