我在使用 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。我怎样才能解决这个问题?
另外:其他功能(例如取消关注登录注销)工作正常,我只是关注功能有问题。
杨魅力
相关分类