I'm currently implementing the authorization method for Garmin Connect.
Up until now, I have successfully retrieved the unauthorized request token/ secret and the token verifier as stated in the documentation of Garmin. However, I get an exception when trying to retrieve the user access token/secret from the Garmin Servers.
The exception I get is: Invalid signature for signature method
Since the documentation of Garmin states that a Signature Base String must be generated, I thought my exception has something to do with that since I'm not using it anywhere.
I was wondering if someone here can please help me out where to use the signature base string since it does not specify anywhere in the documentation.
Previously this signature base string had to be used when calculating the HMAC-SHA1 signature. But when acquiring user access tokens, this signature is made up with the Consumer Secret and Request Token Secret, separated with '&' character. So I'm stuck on where to include the Signature Base String.