-
-
Save dentarg/2c6b4fa3ae804f5838bc214e1e432b29 to your computer and use it in GitHub Desktop.
Twingly Search API in Clojure (https://github.com/twingly/twingly-search-api-java)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns clojure-twingly-search-api.core | |
(:gen-class)) | |
(defn get-posts [keyword] | |
(-> | |
(new com.twingly.search.client.UrlConnectionClient(System/getenv "TWINGLY_SEARCH_KEY")) | |
(.makeRequest (.build (com.twingly.search.QueryBuilder/create keyword))) | |
(.getPosts))) | |
; Lie, limited to 1000 | |
(defn print-all-post-urls [keyword] | |
(doseq [post (get-posts keyword)] | |
(println (.getUrl post)))) | |
(defn -main | |
[& args] | |
(print-all-post-urls (first args))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment