我通过发送以下请求成功更改和更新了Google Spreadsheet中的值:
https://script.google.com/macros/s/########/exec?action=update&&redname=John&&bluename=Dow
通过PC Internet浏览器
但是无法从android应用程序发送相同的URL。 例如,以下脚本不执行任何操作:
BufferedReader reader = null;
StringBuffer buffer = new StringBuffer();
URL url = new URL(request);
HttpsURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setInstanceFollowRedirects(false);
connection.setRequestMethod("GET");
connection.setRequestProperty("Content-Type", "text/plain");
connection.setRequestProperty("charset", "utf-8");
connection.connect();
我尝试了许多代码变体,但没有成功。
我们非常感谢您的帮助!
谢谢