...

/

Creating a RESTful Client

Creating a RESTful Client

Let’s learn how to create a RESTful client.

Creating a RESTful client is much easier than programming a server mainly because we do not have to work with the database on the client side. The only thing that the client needs to do is send the right amount and kind of data to the server and receive back the server response. The RESTful client is going to be developed in ~/go/src/github.com/Educative-Content/rest-cli—if we do not plan to make it available to the world, we do not need to create a separate GitHub repository for it. However, for us to be able to see the code of the client, We created a GitHub repository, which is https://github.com/Educative-Content/rest-cli.

The supported first-level cobra commands are the following:

  • list: This command accesses the /getall endpoint and returns the list of users.

  • time: This command is for visiting the /time endpoint.

  • update: This command is for updating user records—the user ID can’t change.

  • logged: This command lists all logged-in users.

  • delete: This command deletes an existing user.

  • login: This command is for logging in a user.

  • logout: This command is for logging out a user.

  • add: This command is for adding a new user to the system.

  • getid: This command returns the ID of a user, identified by their username.

  • search: This command displays information about a given user, identified by their ID.

Note: A client like the one we are about to present is much better than working with curl(1) because it can process the received information but, most importantly, it can interpret the HTTP return codes and preprocess data before sending it to the server. The price we pay is the extra time needed for developing and debugging the RESTful client ...