Hey everyone! I’m working on a web app where users need to create and edit docs. I found the Google Drive REST API but I’m not sure what it can do. Can it let me use the actual Google Docs editor in my app? Or do I have to make my own editor?
I know the API can access a user’s Drive files. But I really want to use Google’s editor because it’s perfect for what I need. Making something that good would be super hard.
If I can’t use Google’s editor, does anyone know any free editors like Google Docs that work with C# ASP.NET? Or is there a way to somehow use Google Docs in my app?
I’d love to hear your thoughts! Thanks!
I’ve dealt with a similar situation in one of my projects. Unfortunately, Google doesn’t provide a way to embed their Docs editor directly into third-party applications. The Drive API is primarily for file management and basic content operations. For a rich editing experience, you’ll need to explore alternative solutions. I ended up using Quill.js, which is a powerful open-source editor that integrates well with ASP.NET. It offers a clean interface and customizable features. While it may not match all of Google Docs’ capabilities, it served my needs quite well. You might want to give it a try and see if it fits your requirements.
As someone who’s been down this road, I can tell you embedding Google Docs directly isn’t possible. It’s a bummer, I know. I’ve tried workarounds, but nothing quite matches the full Google Docs experience.
In my latest project, I ended up using Froala Editor. It’s not free, but it’s robust and plays nice with ASP.NET. The learning curve was gentler than I expected, and it handles most of what I needed from Google Docs.
If budget’s tight, TinyMCE is a solid free option. It’s not as slick as Google Docs, but it gets the job done. Just be prepared for some quirks – especially with complex formatting.
Ultimately, you might need to compromise on features or budget. But hey, that’s web dev for you. Keep at it, and you’ll find a solution that works for your specific needs.
hey dancingfox, i’ve looked into this before. sadly google doesn’t let u embed their full editor. u can use the api to read/write docs, but not edit em directly in ur app. maybe check out CKEditor or TinyMCE? they’re pretty good free alternatives that work w/ asp.net. good luck with ur project!