Results 2 comments of Phat

``` if os.path.exists("cookies.json"): client.load_cookies("cookies.json") else: await client.login( auth_info_1=AUTH_INFO_1, auth_info_2=AUTH_INFO_2, password=PASSWORD ) client.save_cookies("cookies.json") ``` load the cookie

Looks like twitter is restricting usage added a print to twitkit/client/client.py ```python response, _ = await self.gql.create_tweet( is_note_tweet, text, media_entities, poll_uri, reply_to, attachment_url, community_id, share_with_followers, richtext_options, edit_tweet_id, limit_mode ) print(response)...