Skip to content

Commit

Permalink
Got the basic auth var pulled from env
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Mar 6, 2020
1 parent e965561 commit 6f1f809
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/feedbin/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@
; https://github.com/feedbin/feedbin-api/blob/master/content/updated-entries.md#delete-updated-entries-mark-as-read
; DELETE /v2/updated_entries.json "updated_entries": [1,2,3]

(defn -main [] (println "Hello World"))
(defn -main []
; ((client/get "https://api.feedbin.com" {:basic-auth "user:pass"}))
(let [feedbin_auth (System/getenv "FEEDBIN_AUTH")]
(println feedbin_auth))
)

0 comments on commit 6f1f809

Please sign in to comment.