Instagram The remote server returned an error: (429) UNKNOWN STATUS CODE
问题 I'm working on some new programs using my own instagram api. Everything is working fine with me except following user script i wanna follow my list of users id so i use this code foreach (var item in listBox1.Items) { WebRequest request = WebRequest.Create("https://api.instagram.com/v1/users/"+item+"/relationship?access_token=" + Common.token2); request.Proxy = null; request.Method = "POST"; string postData = "action=follow"; byte[] byteArray = Encoding.UTF8.GetBytes(postData); // Set the