According to https://dev.bitly.com/link_metrics.html#v3_link_clicks, we can send multiple parameters like link, unit, etc.
Here i am using this gem https://github.com/philnash/bitly
i am actually looking for Clicks by Day, i tried
Bitly.client.clicks("bitly_short_url").clicks_by_day
, works fine
but i need to change Time Zone value
i tried this
Bitly.client.info({"link" =>"bitly_short_url", "timezone" => -6}).clicks_by_day
and i am getting error.
Is there any other way to get result for different timezone?
Please help