Package org.springframework.social.facebook.api

Examples of org.springframework.social.facebook.api.Account


  // private helper methods
 
  private Map<String, Account> accountCache = new HashMap<String, Account>();
 
  private String getPageAccessToken(String pageId) {
    Account account = getAccount(pageId);
    if(account == null) {
      throw new PageAdministrationException(pageId);
    }
    return account.getAccessToken();
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.facebook.api.Account

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.