How to migrate from Twitter API version 1 to version 1.1
If you have a twitter API widget on your website using Twitter API version 1 that is no longer working, its probably because Twitter recently launched API version 1.1. The response body that you will get for API version 1 will look like "{"errors": [{"message": "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", "code": 68}]}" Now, How to migrate from Twitter API version 1 to version 1.1 The upgrade process is different for everyone. It's best to look at how you're using the API today and compare that to the documentation for API v1.1. Some API methods have changed paths. Some no longer exist. There are also newer ones. All requests require a form authentication, for which you can either use Obtaining access tokens or Application-only authentication . There are docs for these topics throughout this site, but admittedly they speak mostly to programmers. App-...