韌館-LearnHouse

Archive for 10 月 20th, 2014

[Android]HttpClient實作HTTPs與強制允許自簽憑證(Self-Signed Certificate)

HttpClient是早期Android提供可以用來與WebServer溝通的API

Android2.3之後就建議使用新的HttpURLConnection,這裡我就不在贅述

有關HttpClient與新版的HttpURLConnection差別

請直接看上一篇HttpsURLConnection實作HTTPs與強制允許自簽憑證(Self-Signed Certificate)

不多說,就直接看Code吧: Read more...

2014年10 月 posted by admin in 程式&軟體 and have No Comments

[Android]HttpsURLConnection實作HTTPs與強制允許自簽憑證(Self-Signed Certificate)

繼上次Apache伺服器憑證申請與安裝後,就可以開始implement了

這時你的Web Server已經有經過CA認可的合法憑證,且是在有效的效期內,因此可以直接參考Security with HTTPS and SSL

寫完你的APP就可以透過https和你的Server溝通了......好講解完畢,你已經可以和Server用https連線了

.
.
.

不過這裡當然不會講一般正常的情況下,而是當你沒有錢買憑證的時後,卻又想要你的app能透過https和你的server溝通

這時後又該怎麼做呢??? Read more...

2014年10 月 posted by admin in 程式&軟體 and have No Comments