I’m doing some tidying of my existing timeline API caching for some sites I run, and I notice that switching versions for statuses/user_timeline is causing authentication issues and I can’t seem to find anything that clarifies “this now requires OAuth but it didn’t used to” so I’m hoping it’s a bug.
Given this current version URL:
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=jaspertandy
I would hope that just changing the version to 1.1 would yield the same, or very similar return:
https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=jaspertandy
But I’m now being met with:
{“errors”:[{“message”:“Bad Authentication data”,“code”:215}]}
Is this a bug, or is there part of the documentation that I’ve overlooked? I really hope it’s a bug, because this change is going to cause loads of problems for me otherwise. Replacing with an embedded timeline isn’t really an option because these tweets need to be merged with other data and styled in a similar way to the rest of a site.