mkraemer / garmin-connect-sso
Installs: 22
Dependents: 0
Suggesters: 1
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/mkraemer/garmin-connect-sso
Requires
This package is not auto-updated.
Last update: 2025-09-27 23:04:57 UTC
README
This GarminConnect SSO Client facilitates the login process for the GarminConnect SSO service.
When invoked, it returns a GuzzleHttp\Cookie\CookieJar which includes all cookies necessary to make authenticated calls against the GarminConnect API.
Usage
See examples/login.php
$username = '...'; $password = '...'; $client = new GuzzleHttp\Client(); $garminSSO = new MKraemer\GarminConnect\SSO\SSO( $client, $username, $password ); $cookieJar = $garminSSO(); //use this cookieJar for authenticated guzzle requests var_dump($cookieJar);