connect.addParameter(params, "access_token", accessToken);
connect.addParameter(params, "openid", openid);
connect.addParameter(params, "format", "json");
String json = connect.get("https://graph.qq.com/photo/list_album", params);
JSONObject jsonObject = new JSONObject(json);
Error error = Error.parse(jsonObject);
if (error != null) {
return new Result<Album>(error);
}
List<Album> results = new ArrayList<Album>();
JSONArray jsonArray = jsonObject.getJSONArray("album");