Package com.face4j.facebook

Examples of com.face4j.facebook.Client


  private APICallerInterface caller;
 
  Logger logger = Logger.getLogger(Facebook.class.getName());
 
  public FacebookFactory(String clientId, String clientSecret){
    this(new Client(clientId, clientSecret), HttpClientType.APACHE_HTTP_CLIENT);
  }
View Full Code Here


  public FacebookFactory(Client client){
    this(client,HttpClientType.APACHE_HTTP_CLIENT);
  }
 
  public FacebookFactory(String clientId, String clientSecret, HttpClientType clientType){
    this(new Client(clientId, clientSecret),clientType);
  }
View Full Code Here

TOP

Related Classes of com.face4j.facebook.Client

Copyright © 2018 www.massapicom. 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.