Hi, I have an issue with Strava API. I want to get activity streams and especially cadence, watts and temp for 1 activity.
Problem: with my requests below, I can only see 'temp' and not cadence and watts.
header = {'Authorization': 'Bearer ' + access_token}
param = {'keys': ['cadence', 'watts', 'temp'], 'key_by_type': True}
time_list = requests.get(url, headers=header, params=param).json()
Does it mean we are able to do only 1 key per request ? Meaning I should have to do 3 requests and not only one ?
Thanks