从 GWT 访问 Google 文档电子表格
我想使用 Google 文档电子表格作为 GWT 的键值存储,实现此目的的最佳方法是什么?我认为我无法使用适用于 Java 的 Google API 客户端库,因为它似乎是客户端 Java 库并使用 java.net.HttpURLConnection
。我必须使用 JSNI 和 Javascript 客户端吗?
I want to use a Google Docs Spreadsheet as a key-value store from GWT, what is the best way to implement this? I don't think I can use the Google API Client Library for Java since that seems to be a client-side Java library and uses java.net.HttpURLConnection
. Would I have to use JSNI and the Javascript client?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 JSNI 和 JavaScript 客户端可能是最好的方法。另一种选择是在服务器上使用 Java 客户端,并通过客户端代理 API 调用,但这似乎没有必要。
Using JSNI and the JavaScript client is probably the best way. Another option would be to use the Java client on your server and proxy API calls through it from your client, but that seems unnecessary.