You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
The developers site states that, at /athlete/activities the returned upload_id through SummaryActivity has type long. Yet, the response example you provide:
Provides an upload_id which doesn't complain with the specification, as int64's max value is 9223372036854775807, which is less than 987654321234567891234. This may be important because it makes more complex to create integration tests mocking the API using the provided examples.
The text was updated successfully, but these errors were encountered:
Apparently, that's not the only field wrong in the example. There are several other fields mentioned in the example which don't comply with the SummaryActivity specification, such as resource_state, max_heartrate, location_city and more. And the same applies to objects within this specification like map, which also includes resource_state.
In addition to these, I strongly suggest sorting the Models/Components in the side navbar of the documentation site alphabetically. They way they are presented at the moment complicates a lot searching for a specification.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The developers site states that, at
/athlete/activities
the returnedupload_id
throughSummaryActivity
has typelong
. Yet, the response example you provide:Provides an
upload_id
which doesn't complain with the specification, asint64
's max value is9223372036854775807
, which is less than987654321234567891234
. This may be important because it makes more complex to create integration tests mocking the API using the provided examples.The text was updated successfully, but these errors were encountered: