如何通过 Android 上的 API-Key 接收 Pushbullet 笔记/图像/个人资料详细信息?我的主要问题是那时的 SSL 安全性。(顺便说一句:我几乎是 Android 的初学者,只知道基础知识。)
身份验证如下所示:
https://apikey@api.pushbullet.com/v2/users/me
我通过以下方式成功请求网页内容(例如 wikipedia.org)
try {
URL url = new URL("https://www.wikipedia.org");
URLConnection urlConnection = url.openConnection();
InputStream in = urlConnection.getInputStream();
StringWriter writer = new StringWriter();
IOUtils.copy(in, writer);
theString = writer.toString();
textView.setText(theString);
} catch (Exception e) {
textView.setText("Error: "+e "String content: " +theString);
}
但是,例如,当我请求我的个人资料详细信息时,我总是得到一个
javaio FileNotFoundException