├── Images └── Twitter │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── 5.jpg ├── LICENSE ├── README.md └── Twitter.md /Images/Twitter/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hack-with-Github/Revoke_API_Keys/8e686cb2c334ebba3dc45724828e359f43e7fd15/Images/Twitter/1.jpg -------------------------------------------------------------------------------- /Images/Twitter/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hack-with-Github/Revoke_API_Keys/8e686cb2c334ebba3dc45724828e359f43e7fd15/Images/Twitter/2.jpg -------------------------------------------------------------------------------- /Images/Twitter/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hack-with-Github/Revoke_API_Keys/8e686cb2c334ebba3dc45724828e359f43e7fd15/Images/Twitter/3.jpg -------------------------------------------------------------------------------- /Images/Twitter/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hack-with-Github/Revoke_API_Keys/8e686cb2c334ebba3dc45724828e359f43e7fd15/Images/Twitter/4.jpg -------------------------------------------------------------------------------- /Images/Twitter/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hack-with-Github/Revoke_API_Keys/8e686cb2c334ebba3dc45724828e359f43e7fd15/Images/Twitter/5.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Hack with Github 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Revoke API Keys 2 | Documentation featuring how to revoke API keys of different websites 3 | -------------------------------------------------------------------------------- /Twitter.md: -------------------------------------------------------------------------------- 1 | # Twitter API 2 | 3 | - Goto [apps.twitter.com](https://apps.twitter.com) to know the list of Twitter Apps you have created 4 | - Click on the App you want to revoke API keys 5 | 6 | ### To Delete the application 7 | - Scroll to the end and click on the **Delete Application** button under the Application Actions to delete the application. 8 | 9 | ![Delete Application](/Images/Twitter/1.jpg) 10 | 11 | - There will be a confirmatory question before deleting. Now click on **Delete** button to delete your app. 12 | 13 | ![Confirmation](/Images/Twitter/2.jpg) 14 | 15 | ### To just revoke / regenerate the API keys 16 | - If you wish to have the application but just want to regenerate the API keys, click on **Keys and Access Tokens** tab. 17 | 18 | ![Keys and Access Tokens tab](/Images/Twitter/3.jpg) 19 | 20 | - Click on **Regenerate Consumer Key and Secret** under *Application Actions*. 21 | 22 | ![Regenerate Consumer Key and Secret](/Images/Twitter/4.jpg) 23 | 24 | - Click on **Regenerate My Access Token and Token Secret** under *Token Actions* to regenerate Access token and secret. If you wish to revoke token access click on **Revoke Token Access**. 25 | 26 | ![Token Actions](/Images/Twitter/5.jpg) 27 | --------------------------------------------------------------------------------