-
-
Save bluesealjs/726c118ee95afbe15c96868f16b76edd to your computer and use it in GitHub Desktop.
This is the code for creating simple phone authentication REST API using Twilio service.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv/config') | |
const express = require('express') | |
const app = express() | |
const port = 3000 | |
const client = require('twilio')(process.env.ACCOUNT_SID, process.env.AUTH_TOKEN) | |
// /login | |
// - phone number | |
// - channel (sms/call) | |
// /verify | |
// - phone number | |
// - code | |
app.get('/', (req, res)=>{ | |
res.status(200).send({ | |
message: "You are on Homepage", | |
info: { | |
login: "Send verification code through /login . It contains two params i.e. phonenumber and channel(sms/call)", | |
verify: "Verify the recieved code through /verify . It contains two params i.e. phonenumber and code" | |
} | |
} | |
}) | |
// Login Endpoint | |
app.get('/login', (req,res) => { | |
if (req.query.phonenumber) { | |
client | |
.verify | |
.services(process.env.SERVICE_ID) | |
.verifications | |
.create({ | |
to: `+${req.query.phonenumber}`, | |
channel: req.query.channel==='call' ? 'call' : 'sms' | |
}) | |
.then(data => { | |
res.status(200).send({ | |
message: "Verification is sent!!", | |
phonenumber: req.query.phonenumber, | |
data | |
}) | |
}) | |
} else { | |
res.status(400).send({ | |
message: "Wrong phone number :(", | |
phonenumber: req.query.phonenumber, | |
data | |
}) | |
} | |
}) | |
// Verify Endpoint | |
app.get('/verify', (req, res) => { | |
if (req.query.phonenumber && (req.query.code).length === 4) { | |
client | |
.verify | |
.services(process.env.SERVICE_ID) | |
.verificationChecks | |
.create({ | |
to: `+${req.query.phonenumber}`, | |
code: req.query.code | |
}) | |
.then(data => { | |
if (data.status === "approved") { | |
res.status(200).send({ | |
message: "User is Verified!!", | |
data | |
}) | |
} | |
}) | |
} else { | |
res.status(400).send({ | |
message: "Wrong phone number or code :(", | |
phonenumber: req.query.phonenumber, | |
data | |
}) | |
} | |
}) | |
// listen to the server at 3000 port | |
app.listen(port, () => { | |
console.log(`Server is running at ${port}`) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment