Liking cljdoc? Tell your friends :D

waimai.fengniao


make-signclj

(make-sign data
           salt
           &
           {:keys [appid token]
            :or {appid (System/getProperty "waimai.fengniao.appid")
                 token (System/getProperty "waimai.fengniao.token")}})

生成签名

生成签名
sourceraw docstring

requestclj

(request cmd
         params
         &
         {:keys [appid url debug? token]
          :or {appid (System/getProperty "waimai.fengniao.appid")
               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})

请求蜂鸟api

请求蜂鸟api
sourceraw docstring

request-tokenclj

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

获取token

获取token
sourceraw docstring

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")}})

包装api的payload

包装api的payload
sourceraw docstring

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

× close