I'm not sure why I can't figure this out it's so simple.
I'm trying to concatenate todays date in the format YYYY-MM-dd to a string and it doesn't work.
I've tried creating the date with now = Time.now.strftime("%Y-%m-%d")
and concatenating it like this
'http://api.flurry.com/appMetrics/Sessions?apiAccessCode=########&apiKey=#########&startDate='+now+'&endDate='+now
Please advise, thank you.
edit: If I set now = '2016-11-05'
then everything works fine. So the issue is definitely in how I'm creating my date.