Skip to content

Instantly share code, notes, and snippets.

View yannikw23's full-sized avatar
💭
🐛🥷🏼

Yannik yannikw23

💭
🐛🥷🏼
View GitHub Profile
@niw
niw / fetch_nike_puls_all_activities.bash
Last active July 16, 2024 23:37
A simple NikePlus API description to fetch past run metrics
#!/usr/bin/env bash
# fetch_nike_puls_all_activities.bash
# A simple bash script to fetch all activities and metrics from NikePlus.
# See `nike_plus_api.md` for the API details.
readonly bearer_token="$1"
if [[ -z "$bearer_token" ]]; then
echo "Usage: $0 bearer_token"
exit