Hi,

C# code accessing API :

        HttpWebRequest Request = (HttpWebRequest)WebRequest.Create
("http://twitter.com/account/rate_limit_status.xml";);
        Request.Method = "GET";
        Request.Credentials = new NetworkCredential("auh", "xxx");
        HttpWebResponse Response = (HttpWebResponse)Request.GetResponse
();
        StreamReader readStream = new StreamReader
(Response.GetResponseStream(), Encoding.UTF8);

        lbl.Text = readStream.ReadToEnd();

Response :

<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<hash>\n  <remaining-hits
type=\"integer\">150</remaining-hits>\n  <hourly-limit

type=\"integer\">150</hourly-limit>\n  <reset-time-in-seconds type=
\"integer\">1264158432</reset-time-in-seconds>\n  <reset-time

type=\"datetime\">2010-01-22T11:07:12+00:00</reset-time>\n</hash>\n

Talk:

Twitter state AUH account as whitelisted but we are experiencing rate
limit of 150 on AUH. This has been the problem since a month. Please
advise us on this as soon as possible.

Reply via email to