facebook4j.internal.json.z_F4JInternalFactory类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(142)

本文整理了Java中facebook4j.internal.json.z_F4JInternalFactory类的一些代码示例,展示了z_F4JInternalFactory类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。z_F4JInternalFactory类的具体详情如下:
包路径:facebook4j.internal.json.z_F4JInternalFactory
类名称:z_F4JInternalFactory

z_F4JInternalFactory介绍

暂无

代码示例

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Checkin> searchCheckins(Reading reading) throws FacebookException {
  return factory.createCheckinList(get(buildSearchEndpoint(null, "checkin", reading)));
}

代码示例来源:origin: roundrop/facebook4j

public Comment getComment(String commentId, Reading reading) throws FacebookException {
  return factory.createComment(get(buildEndpoint(commentId, reading)));
}

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Book> getBooks(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createBookList(get(buildEndpoint(userId, "books", reading)));
}

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Activity> getActivities(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createActivityList(get(buildEndpoint(userId, "activities", reading)));
}

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Album> getAlbums(String id, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAlbumList(get(buildEndpoint(id, "albums", reading)));
}

代码示例来源:origin: roundrop/facebook4j

public Album getAlbum(String albumId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAlbum(get(buildEndpoint(albumId, reading)));
}

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Achievement> getAchievements(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAchievementList(get(buildEndpoint(userId, "achievements", reading)));
}

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Admin> getPageAdmins(String pageId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAdminList(get(buildEndpoint(pageId, "admins", reading)));
}

代码示例来源:origin: roundrop/facebook4j

public Checkin getCheckin(String checkinId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createCheckin(get(buildEndpoint(checkinId, reading)));
}

代码示例来源:origin: roundrop/facebook4j

public ResponseList<Account> getAccounts(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAccountList(get(buildEndpoint(userId, "accounts", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Book> getBooks(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createBookList(get(buildEndpoint(userId, "books", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Activity> getActivities(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createActivityList(get(buildEndpoint(userId, "activities", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Album> getAlbums(String id, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAlbumList(get(buildEndpoint(id, "albums", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public Album getAlbum(String albumId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAlbum(get(buildEndpoint(albumId, reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Achievement> getAchievements(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAchievementList(get(buildEndpoint(userId, "achievements", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Admin> getPageAdmins(String pageId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAdminList(get(buildEndpoint(pageId, "admins", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public Checkin getCheckin(String checkinId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createCheckin(get(buildEndpoint(checkinId, reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Account> getAccounts(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createAccountList(get(buildEndpoint(userId, "accounts", reading)));
}

代码示例来源:origin: org.facebook4j/facebook4j-core

public ResponseList<Checkin> searchCheckins(Reading reading) throws FacebookException {
  return factory.createCheckinList(get(buildSearchEndpoint(null, "checkin", reading)));
}

代码示例来源:origin: apache/servicemix-bundles

public ResponseList<Book> getBooks(String userId, Reading reading) throws FacebookException {
  ensureAuthorizationEnabled();
  return factory.createBookList(get(buildEndpoint(userId, "books", reading)));
}

相关文章

z_F4JInternalFactory类方法