Package com.restfb

Examples of com.restfb.FacebookClient.fetchConnection()


    return new DefaultFacebookClient(accessToken);
  }
 
  public Boolean exist(String accessToken, String facebookId) {
    FacebookClient fb = createFacebookClient(accessToken);
    Connection<User> connection = fb.fetchConnection(FB_SEARCH, User.class, Parameter.with(FB_ID, facebookId));
    return !connection.getData().isEmpty();
  }
 
  public User getProfile(String accessToken) {
    FacebookClient fb = createFacebookClient(accessToken);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.