0

我的代码:

public class restletexample {

    String URI = "https://www.googleapis.com/upload/fusiontables/v1/tables/tableid/import";

    HashMap<String, String> urlVariables = new HashMap<String, String>();

    String column = "'Moth', '30', '2012','efef','efefef'";

    public void testrestlet() {

        urlVariables.put("key=", "KEY");

        RestTemplate restTemplate = new RestTemplate();

        restTemplate.postForLocation(URI, column, urlVariables);

    }

    public static void main(String args[]) {

        restletexample rst = new restletexample();
        rst.testrestlet();

    }

}

例外 :

Exception in thread "main" org.springframework.web.client.HttpClientErrorException: 401 Unauthorized

我在 API 控制台中生成了密钥,并且正在使用相同的 . 我不知道为什么谷歌没有授权我的请求。需要帮助......自从过去 4 小时以来我的头都被打破了。

4

1 回答 1

1

您的 URI 似乎错误 - “tableid”应替换为您的表的实际 ID。

于 2012-12-17T18:40:03.400 回答