Become a member
Sign in
Gaurav Arora
Gaurav Arora

Gaurav Arora

4 Following
2 Followers
·
  • Profile

  • Claps

Latest

Gaurav Arora
Gaurav Arora
Jul 1, 2018 · 1 min read

Get a certificate

For development purposes, you can generate a self-signed certificate with the following commands:

# generate key
$ openssl genrsa -out localhost.key 2048
# generate cert
$ openssl req -new -x509 -key localhost.key -out localhost.cert -days 3650 -subj /CN=localhost
1 response
Gaurav Arora
Gaurav Arora
Jun 15, 2018 · 2 min read

Understanding REST — Http methods

REST (Representational State Transfer) was introduced and defined in 2000 by Roy Fielding in his doctoral disertation. REST is an architectural style for designing distributed systems. It is not a standard but a set of constraints, such as being stateless, having a…

Gaurav Arora
Gaurav Arora
Jun 9, 2018 · 4 min read

Understanding REST API Design

There are six key constraints to REST API design to be aware of when deciding whether this is the right API type for your project.

Client-Server