Reputation: 197
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
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