}
// @FacebookAPIVersion
String restBaseURL = "https://graph.facebook.com/";
Method method = this.getClass().getMethod(this.name.getMethodName(), new Class[0]);
FacebookAPIVersion annotation = method.getAnnotation(FacebookAPIVersion.class);
if (annotation != null) {
String apiVersion = annotation.value();
restBaseURL += apiVersion + "/";
}
Configuration conf = ((FacebookBaseImpl) facebook).conf;
Field field = conf.getClass().getSuperclass().getDeclaredField("restBaseURL");
field.setAccessible(true);