I have a problem with following a user on Instagram with InstaSharp Here is my code:
private async void Follow()
{
var followMe = await api.FollowUserAsync(userID);
if (followMe.Succeeded)
{
MessageBox.Show("Followed");
}
if (!followMe.Succeeded)
{
MessageBox.Show(followMe.Info.Message);
}
}
And when I call this method in the messageBox it says feedback_required. How can I fix this?
Also : other functions like Unfollow Login LogOut are working fine I just have problem with Follow function.