Следующий код Python возвращает '(Connection aborted.', ConnectionResetError(54, 'Connection reset by peer'))
. Все, что я хочу сделать, это опубликовать что-нибудь на этой временной шкале.
client = stream.connect(STREAM_API_KEY, STREAM_KEY_SECRET)
# For the feed group 'user' and user id get the feed
user_feed = client.feed('timeline', user_id)
try:
# Add the activity to the feed
user_feed.add_activity({'actor': user_id, 'verb': 'tweet', 'object': 1, 'tweet': 'Hello world'})
except Exception as e:
print('Failed to add activity to stream for user_id: {}'.format(user_id))