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 was 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 developers site states that, at
/athlete/activitiesthe returnedupload_idthroughSummaryActivityhas typelong. Yet, the response example you provide:[ { "resource_state" : 2, "athlete" : { "id" : 134815, "resource_state" : 1 }, "name" : "Happy Friday", "distance" : 24931.4, "moving_time" : 4500, "elapsed_time" : 4500, "total_elevation_gain" : 0, "type" : "Ride", "sport_type" : "MountainBikeRide", "workout_type" : null, "id" : 154504250376823, "external_id" : "garmin_push_12345678987654321", "upload_id" : 987654321234567891234, [...]Provides an
upload_idwhich 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.