-
Notifications
You must be signed in to change notification settings - Fork 245
Closed
Labels
bugSomething isn't workingSomething isn't workingfixedbug fixedbug fixedquestionFurther information is requestedFurther information is requested
Description
Hi, Friedns.
I am trying to create an account using this code:
_
_var email = "alenaverji@yandex.ru";
var username = "alenavergi";
var password = "msp1s01110";
var firstName = "AlenaVergi";
var userSession = new UserSessionData
{
UserName = username,
Password = password
};
var delay = RequestDelay.FromSeconds(2, 2);
// create new InstaApi instance using Builder
_instaApi = InstaApiBuilder.CreateBuilder()
.SetUser(userSession)
.UseLogger(new DebugLogger(LogLevel.Exceptions)) // use logger for requests and debug messages
.SetRequestDelay(delay)
.Build();var checkEmail = await _instaApi.CheckEmailAsync(email); var create = await _instaApi.CreateNewAccountAsync(username, password, email, firstName);_
_
But, create.Succeeded returns False.
What could I have been wrong?
Thank you.

Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingfixedbug fixedbug fixedquestionFurther information is requestedFurther information is requested