I have made something like this:
# -*- coding: utf-8 -*-
import twython,time
twitter = twython.setup(username="rolandf", password="My Password")
twitter.createFriendship(id='gdorn',follow=True)
#also tried
twitter.createFriendship(user_id='gdorn',follow=True)
#and also tried
twitter.createFriendship(screen_name='gdorn',follow=True)
All three form give me a 404.
Any idea what I did wrong ?
Regards,
Frédéric
I gave it an other try and now it almost work.
Out of 72 call to createFriendship I got 27 error 403.
In fact in that api call 403 mean that you tried to follow someone you
were already following and it's not a rate limit.
- Frédéric
Le 14-sept.-09 à 01:37, Ryan McGrath a écrit :