Open frexiz opened 5 years ago
Are you still dealing with this problem ? I would just like to remind you that challenges arise when the user logs in from an unusual location or if Instagram thinks the user is using a malicious third party service.
Are you still dealing with this problem ? I would just like to remind you that challenges arise when the user logs in from an unusual location or if Instagram thinks the user is using a malicious third party service.
I'm dealing with this same problem.
Hello I have little problem with Instagram challanges. When a new user tries to login it gets challange. I m chosing the option for SMS verification and I'm returning the challange url to my frontend. After that I sent the chalange url and the sms code to my nodejs backend. It gives me success response but next time I have another checkpoint ?
Example code
if (error.error && error.error.message === 'checkpoint_required') { let challengeUrl = error.error.checkpoint_url; client.updateChallenge({challengeUrl, choice: 0}).then((state) => { res.json({ 'verification': true, 'challangeurl': challengeUrl, 'msg': 'Sms has been sent to the user' }); }); // 0 is sms verification }
` app.post('/challange-resolve', function (req, res) {
}); `