Hi Andy, Are you using PHP/curl to do this? If so, please make sure to have a POSTFIELDS value, even if it is an empty string:
curl_setopt($ch, CURLOPT_POSTFIELDS, ""); This will correctly format the POST request and not look malformed (which might be why you are getting 302's as part of malformed request protection). Thanks, -Chad On Fri, Aug 14, 2009 at 5:47 AM, andysc<andy...@googlemail.com> wrote: > > The web API uses a method called friendships/remove to stop someone > following me that I want to get rid of, without actively blocking them > - just want to kick off a load of followers. > > When I try that call through the API, with a POST with no content, I > get a 302 moved temporarily return. > > Is there a way to make this call work through the API, or if not, what > is the recommended way of removing a follower? Looks like create block > then destroy block would do it, but that seems like a heavy duty way! > > TVM > Andy >