привет, мне нужно подписаться на пользователя с файлом в библиотеке twython в python, но у меня есть erorr для Twitter API
from twython import Twython, TwythonError
from twython import *
# Optionally accept user data from the command line (or elsewhere).
# Usage: follow_user.py ryanmcgrath
target=''
a=input("enter a Username or if you have a usetname list enter 1 : ")
if (a=='1'):
f=open("username_list.txt",'r')
target=f
else:
target=input("enter usernam with ")
# Requires Authentication as of Twitter API v1.1
twitter = Twython('----------
',
'------------------------',
'------------------',
'------------')
try:
twitter.create_friendship(screen_name=target, follow="true")
except TwythonError as e:
print(e)
, и это моя ошибка
Twitter API вернул 403 (запрещено), не могу найти указанного пользователя.