V
Vapor ..
myurl =
"http://twitter.com/statuses/friends_timeline.json?since_id=1060198339"
uri = URI.parse(myurl)
puts uri.path
=> http://twitter.com/statuses/friends_timeline.json
Where has "?since_id=1060198339" gone?
uri.path then brings different data than I need.
"http://twitter.com/statuses/friends_timeline.json?since_id=1060198339"
uri = URI.parse(myurl)
puts uri.path
=> http://twitter.com/statuses/friends_timeline.json
Where has "?since_id=1060198339" gone?
uri.path then brings different data than I need.