使用带有从Android提供给GScript的参数的URL请求将数据发布到Google Spreadsheet

时间:2019-01-24 18:26:11

标签: javascript android url google-apps-script

我通过发送以下请求成功更改和更新了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();

我尝试了许多代码变体,但没有成功。

我们非常感谢您的帮助!

谢谢

0 个答案:

没有答案