我在使用 InstaSharp 在 Instagram 上关注用户时遇到问题这是我的代码:
private async void Follow()
{
var followMe = await api.FollowUserAsync(userID);
if (followMe.Succeeded)
{
MessageBox.Show("Followed");
}
if (!followMe.Succeeded)
{
MessageBox.Show(followMe.Info.Message);
}
}
当我在 messageBox 中调用此方法时,它会显示 feedback_required。我怎样才能解决这个问题?
另外:Unfollow Login LogOut 等其他功能工作正常我只是对 Follow 功能有问题。