Hello,
I integrate my webserver app with Garmin API. My question is pretty simple. How can I pass a custom param to authorizePath step (https://connect.garmin.com/oauthConfirm) and get it back along with oauth_token and oauth_verifier? In my case, I want to pass param to Garmin Endpoint to know which user in my app just consented. Instead of
{"oauth_token"=>"09416716-dec5-4254-91fa-6da708c90d34", "oauth_verifier"=>"mxqeNJ4bER"}
I would like to retrive
{"oauth_token"=>"09416716-dec5-4254-91fa-6da708c90d34", "oauth_verifier"=>"mxqeNJ4bER", "userID"=>"4789324723642387462"}
Is somehow possible?
Regards.