I’m working on a web app where users need to make and change documents. I looked into the Google Drive API but I’m not sure what it can do.
Can the API let my app use the actual Google Docs editor? Or do I have to make my own editor from scratch?
I really want to use Google’s editor because it’s perfect for what I need. If I can’t use it, are there any free document editors like Google Docs that work with C# ASP.NET?
I know the Drive API can access files in a user’s Google Drive. But can it also give me the full Google Docs editing experience in my app? That would be awesome!
If anyone has done this before or knows more about it, I’d love to hear your thoughts. Thanks!
I’ve actually tackled a similar challenge in one of my recent projects. Unfortunately, embedding the full Google Docs editor directly into your web app isn’t possible through the Drive API. Google keeps that functionality proprietary.
However, don’t lose hope! There are some workarounds that might suit your needs. One approach I’ve used is to implement the Google Docs editor in an iframe. This method allows users to edit documents within your app’s interface, though it’s not as seamless as a fully integrated solution.
If you’re set on having a more customized experience, you might want to look into open-source alternatives like CKEditor or TinyMCE. These are robust WYSIWYG editors that can be integrated into your C# ASP.NET app. They offer many features similar to Google Docs, though they may require more setup and customization on your end.
Remember, while these alternatives might not be exactly like Google Docs, they can often be tailored to fit your specific needs better than a one-size-fits-all solution. Good luck with your project!
hey emma, i’ve been there too. sadly, u can’t embed the full google docs editor
but there’s hope! check out froala or summernote - they’re pretty sweet wysiwyg editors that work with asp.net. not exactly google docs, but they might do the trick for ur app. good luck with ur project!
As someone who’s worked extensively with document editing in web applications, I can confirm that directly embedding the Google Docs editor isn’t possible through the Drive API. Google keeps that functionality tightly controlled.
However, there are alternative approaches you might consider. One option is using Google’s ‘embed’ feature, which allows you to display a Google Doc in an iframe on your site. Users can view and edit the document, but it’s not as seamless as a fully integrated solution.
For a more customized experience, I’d recommend exploring open-source rich text editors like Quill or ProseMirror. These are highly customizable and can be integrated into your C# ASP.NET app. They offer many features similar to Google Docs and can be tailored to your specific requirements.
While it may require more initial setup, building your own editor using these tools can result in a more tailored and controlled user experience in the long run.