java - Using javascript to auto login into google docs -
i trying secure docs setting spreadsheet private. problem there many users using spreadsheet search queries. able utilize vba create script desktop auto login google without user knowing, do same smartphone using javascript if could. thing found far code below, not sure if right , if not sure how execute, please allow me know if possible or help appreciated
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 guide code set here... } }
java vba
No comments:
Post a Comment