安裝和使用Linux CURL的方法

來源:文萃谷 1.68W

導語:Linux CURL應該如何安裝呢?下面就由小編為大家介紹一下安裝和使用Linux CURL的方法,大家一起去看看吧!

安裝和使用Linux CURL的方法

--獲得安裝包,從網上直接下載或者其他途徑,這裏直接wget

# wget

--解壓到當前目錄

# tar -zxf

--進入解壓後的目錄內

# cd curl-7.17.1

--配置,指定安裝的'目錄,這裏是“/usr/local/curl”

# ./configure --prefix=/usr/local/curl

--

# make

--安裝

# make install

--安裝完畢

使用:

將curl命令加入環境變量,

命令行裏執行(僅對本會話起作用,或者在_profile、rc文件裏配置環境變量):

# export PATH=$PATH:/usr/local/curl/bin

然後就可以使用了

# curl

出來好多html代碼,是百度首頁的代碼

-------------------------------------------------------------------------------------------

使用實例(發送POST請求):

# curl -d @json

-d —— 是以POST形式發送請求

@json —— @是從文件中讀取數據,json文件中的內容為{"address_language":"zh_CN","cell_towers":[{"cell_id":"36526","location_area_code":"14556","mobile_contry_code":"460","mobile_network_code":"02"}],"host":"","location":null,"request_address":true,"version":"1.1.0","wifi_towers":[]}

返回:

{"location":{"latitude":32.117302,"longitude":114.116598,"address":{"country":"中國","country_code":"CN","region":"河南省","city":"信陽市"},"accuracy":1625.0},"access_token":"2:FaXK0Xl_DHRbcQiK:5tGTJsZx1scpjUfJ"}

熱門標籤