chillin.killer
chillin.killer

Reputation: 128

Error when making POST requests with Express

I've made an API and every route was working until now. When i try to make a POST request to the route "/scammer" i receive this error message: Error: write EPROTO 1979668328:error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER:../../third_party/boringssl/src/ssl/tls_record.cc:242:

Postman Console

require('dotenv').config();

const express = require('express');
const cors = require('cors');
const utils = require('./utils');

const app = express();
const port = process.env.PORT || 4000;

const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/db', {
    useNewUrlParser: true,
    useUnifiedTopology: true,
    useFindAndModify: false,
}).then(db => console.log('DB is connected! '))
    .catch(err => console.log(err));

const Users = require('./models/users');

app.use(cors());
app.use(express.json());

const fieldCheck = (field, res) => {
    return !field ? (res.status(400).json({
        error: true,
        message: `Invalid ${field}`
    })) : field
}

app.route('/scammer')
    .post(async (req, res) => {
        const userId = fieldCheck(req.body.user_id, res);

        await Users.updateOne({ 'user_id': userId }, { 'scammer': req.body.scammer });

        res.json({ 'error': false });
    });

app.listen(port, () => {
    console.log('Server started on: ' + port);
});

Upvotes: 4

Views: 9234

Answers (1)

M.zirie
M.zirie

Reputation: 86

routines:OPENSSL_internal:WRONG_VERSION_NUMBER:../../third_party/boringssl/src/ssl/tls_record.cc:242:

It seams that you used HTTPS insted of HTTP to POST to your API

Upvotes: 7

Related Questions