Liking cljdoc? Tell your friends :D

waimai.fengniao


requestclj

(request cmd
         params
         &
         {:keys [appid secret url debug? token]
          :or {appid (System/getProperty "waimai.fengniao.appid")
               secret (System/getProperty "waimai.fengniao.secret")
               token (System/getProperty "waimai.fengniao.token")
               url (System/getProperty
                     "waimai.fengniao.apiurl"
                     "https://open-anubis.ele.me/anubis-webapi/v2/")
               debug? (= (System/getProperty "waimai.debug") "true")}
          :as opts})
source

request-tokenclj

(request-token
  &
  {:keys [appid secret debug? url]
   :or {appid (System/getProperty "waimai.fengniao.appid")
        secret (System/getProperty "waimai.fengniao.secret")
        url (or (System/getProperty "waimai.fengniao.tokenurl")
                "https://open-anubis.ele.me/anubis-webapi/get_access_token")
        debug? false}
   :as opts})
source

wrap-payloadclj

(wrap-payload data
              &
              {:keys [appid token debug?]
               :or {appid (System/getProperty "waimai.fengniao.appid")
                    token (System/getProperty "waimai.fengniao.token")
                    debug? (= (System/getProperty "waimai.debug") "true")}})
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close