我正在尝试通过将电子表格设置为私有来保护我的文档。问题是有许多用户使用此电子表格进行搜索查询。我能够使用VBA从桌面创建脚本以自动登录到谷歌而无需用户知道,但我想做的是做同样的事情但是从智能手机使用Javascript,如果可以的话。到目前为止我发现的唯一的事情是下面的代码,但我不确定这是否真的是正确的,如果不确定如何执行,请告诉我,如果这是可能的或任何帮助将不胜感激
import com.google.gdata.client.docs.*;
import com.google.gdata.data.docs.*;
import com.google.gdata.util.*;
import java.io.IOException;
import java.net.*;
public class MyDocumentsListIntegration {
public static void main(String[] args) throws AuthenticationException, MalformedURLException, IOException, ServiceException
{
String USERNAME = "someuser@gmail.com";
String PASSWORD = "testing123";
DocsService service = new DocsService("MyDocumentsListIntegration-v1");
service.setUserCredentials(USERNAME, PASSWORD);
// TODO: See other portions of this guide for code to put here...
}
}