evgeny
evgeny

Reputation: 1

New login email repeatedly

I'm using instasharper library https://github.com/a-legotin/InstaSharper in one project and I have mails like New login to Instagram from Instagram app on Asus razor every time when I'm trying to run my app and login to Instagram servers. I found that there is automatically assigned random device. And I changed my code just for using the same device always

    var d = AndroidDeviceGenerator.GetByName(sett.deviceType);
    d.PhoneGuid = Guid.Parse(sett.phoneGuid);
    d.GoogleAdId = Guid.Parse(sett.googleGUID);
    d.RankToken = Guid.Parse(sett.rankToken);
    d.AdId = Guid.Parse(sett.Adid);
    d.AndroidVer = AndroidVersion.GetAndroidVersion("19");
    d.DeviceGuid = Guid.Parse(sett.deviceGuid);
    api.SetDevice(d);

But e-mails still received. I'm afraid that in the end my accounts will be blocked.

Upvotes: 0

Views: 164

Answers (0)

Related Questions