I was using the method of requesting a url and it returned a JSON with tweets expected.
Like this: https://twitter.com/statuses/user_timeline/MyUserHere.json?callback=twitterCallback&count=2
But suddenly it stopped working. Returning only an error message.
Maybe I missed something in the twitter API. but from what I saw, now you must be logged in to request such data.
Have any way to call these tweets without exposing the user and password for my user?
Twitter changed feed URL from https://twitter.com to https://api.twitter.com/1/
So try below
https://api.twitter.com/1/statuses/user_timeline/MyUserHere.json?callback=twitterCallback&count=2
Sample feed url here
https://api.twitter.com/1/statuses/user_timeline/codecocktail.rss
You can find more resource here