I'm using the pytwitter module written by Niall Sheridan http://www.evil.ie/

I understand the logic within this module that it basically calls the
url that the twitter api uses,

I'm trying to call the statuses/mentions method from the api.

statuses/mentions

Returns the 20 most recent mentions (status containing @username) for
the authenticating user.

URL: http://twitter.com/statuses/mentions.format

Formats: xml, json, rss, atom

Method(s): GET

Parameters:

    * since_id.  Optional.  Returns only statuses with an ID greater
than (that is, more recent than) the specified ID.  Ex:
http://twitter.com/statuses/mentions.xml?since_id=12345
    * max_id. Optional.  Returns only statuses with an ID less than
(that is, older than) the specified ID.  Ex:
http://twitter.com/statuses/mentions.xml?max_id=54321
    * page.  Optional. Retrieves the 20 next most recent replies.  Ex:
http://twitter.com/statuses/mentions.xml?page=3

Returns: list of status elements

notice how the method must be GET.

using the pytwitter module you call to the api like this

api = pytwitter.pytwitter(username='user', password='pass')
api.pytwitter.statuses_mentions()

however doing that returns the following error

Error 400: <?xml version="1.0" encoding="UTF-8"?>
<hash>
  <request>/statuses/mentions.xml</request>
  <error>This method requires a GET.</error>
</hash>

I have no idea since the lack of pytwitter documentation on how to
resolve this problem...

any ideas?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to