我正在尝试post
使用从我的 AppEngine 向 mongohq 服务器发送请求rest api
。
我使用这段代码:
public static void post(String id, String context)
{
String urlString = "https://api.mongohq.com/databases/db/collections/collection/documents?_apikey=XXXXXXXXXX";
String data = "{\"document\" : {\"_id\": \"" + id+ "\", \"context\":" + context +"}}";
try
{
URL url = new URL(urlString);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setInstanceFollowRedirects(false);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/json");
connection.setRequestProperty("charset", "utf-8");
connection.setRequestProperty("Content-Length", "" + Integer.toString(data.getBytes().length));
connection.setUseCaches(false);
DataOutputStream wr = new DataOutputStream(connection.getOutputStream());
wr.writeBytes(data);
wr.flush();
wr.close();
System.out.println(connection.getResponseMessage());
connection.disconnect();
}
catch (Exception e)
{
System.out.println("postToMongo: "+ e);
}
}
它在 Appengine 外部完美运行,但是当我在 Appengine 内部执行相同操作时,没有任何东西发送到 mongodb。
该函数OK
在 Appengine 外部和内部都打印,但只有当我在 Appengine 外部使用此函数时,数据才会出现在数据库中。
此外,一个简单的 javeget
函数在 Appengine 的外部和内部都可以使用。
谁能帮我解决这个问题?我正在寻找一种从 Appengine 内部发布到 Mongohq 的方法。
谢谢