Examples of NewsSearchRequest


Examples of com.araby.boss.search.NewsSearchRequest

    @SuppressWarnings("deprecation")
    private static Map<Integer, Map<String, String>> getBossNewsSearch(String q) throws IOException, SearchException {

        SearchClient client = new SearchClient(API_KEY);

        NewsSearchRequest newsSerachRequest = new NewsSearchRequest(q);
        newsSerachRequest.setStart(BigInteger.valueOf(0));
        newsSerachRequest.setCount(30);

        NewsSearchResults results = client.newsSearch(newsSerachRequest);

        return results.getNewsSearchResultsAsMap();
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.