@abeme said in How can i confirm instagram account?:
So how can i get a code and then write it. Maybe somehow open 2 google tab or i don't know.
0414a56e-95ed-43e1-867d-fb31ceea028b-изображение.png
Id, is on auto increment feature so it says NULL
var mysql = require('mysql2');
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "",
database: "indirimyedb"
});
con.connect(function(err) {
if (err) throw err;
var sql = "INSERT INTO token (id,token,cookie,aktif) VALUES (NULL, '{{Token}}', '[[COOKIES]]', '1' )";
con.query(sql, function (err, result) {
if (err) throw err;
});
});
ERROR IS;
