Hristijan Ilieski
Hristijan Ilieski

Reputation: 197

Making HTTPS request using android volley

I have my cloud vps server on digitalocean and I have implemented letsencrypt ssl certificate to my server. What should I do in android to make secure post/get requests to my server using volley?

Is there any specific things that I should implement? I am very new in this area with ssl certificates, so I have no idea how this really works.

Upvotes: 0

Views: 314

Answers (1)

Nandhu
Nandhu

Reputation: 158

HTTPS is simply HTTP over SSL

make connection like any standard Request

before : http://www.example.com/user/123

With HTTPS https://www.example.com/user/123 //Encrypted by default

Upvotes: 1

Related Questions