我在使用 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。我怎样才能解决这个问题?另外:其他功能(例如取消关注登录注销)工作正常,我只是关注功能有问题。
1 回答
杨魅力
TA贡献1811条经验 获得超6个赞
正如您所说,在这种情况下,某些特定国家/地区的 IP 将被禁止。
如果您的客户来自这些国家/地区,您可以在程序内使用代理来解决此问题。
C# 通过代理连接
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("[ultimate destination of your request]");
WebProxy myproxy = new WebProxy("[your proxy address]", [your proxy port number]);
myproxy.BypassProxyOnLocal = false;
request.Proxy = myproxy;
request.Method = "GET";
HttpWebResponse response = (HttpWebResponse) request.GetResponse();
我希望这可以帮助你。
- 1 回答
- 0 关注
- 107 浏览
添加回答
举报
0/150
提交
取消