Socket
Socket
Sign inDemoInstall

github.com/phogbinh/mysql-heroku-rest-api

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/phogbinh/mysql-heroku-rest-api


Version published
Created
Source

mysql-heroku-rest-api

Description

The project uses Go, Heroku with ClearDB (MySQL) to implement a back-end API managing a simple database table named users. It supports some basic RESTful APIs as described in the cURL API section below. The application URL can be found here.

Contributor

  • phogbinh

cURL API

Get all users

Description

Get all users' names and passwords from the database table users.

Response

An JSON object containing all users' names and passwords fetched from the database.

Example

curl -X GET https://powerful-reaches-73385.herokuapp.com/users

Create an user

Description

Create an user to the database table users.

Response

An JSON object containing the requested user's name and password.

Example

curl -X POST -d "{ \"name\": \"bill\", \"password\": \"1\" }" https://powerful-reaches-73385.herokuapp.com/users

Get an user

Description

Get an user from the database table users.

Response

An JSON object containing the user's name and password fetched from the database.

Example

curl -X GET https://powerful-reaches-73385.herokuapp.com/users/bill

Update an user password

Description

Update an user password in the database table users.

Response

An JSON object containing the requested user's name and password.

Example

curl -X PUT -d "{ \"name\": \"bill\", \"password\": \"666\" }" https://powerful-reaches-73385.herokuapp.com/users/bill

Delete an user

Description

Delete an user from the database table users.

Response

An JSON object containing the user's name given in the requested URL.

Example

curl -X DELETE https://powerful-reaches-73385.herokuapp.com/users/bill

Solutions for Known Errors

A documentation describing solutions for known errors.

FAQs

Package last updated on 15 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc