I've just read through the Twitter API documentation and to fetch the feed from a user with API 1.1 you need User Level Access rights which you can only get through having a valid OAuth authentification so unless you decide to implement OAuth you will receive this error:
{"errors":[{"message":"Bad Authentication data","code":215}]}
You can still use the API 1.0 but be aware that it already is deprecated and will probably be removed in the future. If you want to use the API 1.0, this is the appropriate URL to call:
https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=USERNAME_GOES_HERE&count=NUMBER_OF_TWEETS_GOES_HERE
I'd suggest you implement OAuth (it's not that hard) and start using the API 1.1.