Package org.springframework.social.facebook.api

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


    Map<String, Object> resultSet = (Map<String, Object>) graphApi.fetchObject("fql", Map.class, parameters);
    @SuppressWarnings("unchecked")
    List<Map<String, Object>> resultSetData = (List<Map<String, Object>>) resultSet.get("data");
    List<T> response = new ArrayList<T>();
    for (Map<String, Object> dataItem : resultSetData) {
      response.add(mapper.mapObject(new FqlResult(dataItem)));
    }   
    return response;
  }
View Full Code Here

TOP

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

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.