Oauth authentification to Fitbit using httr

后端 未结 2 1495
遥遥无期
遥遥无期 2020-12-16 06:07

I\'m trying to connect to the fitbit api using the httr library.

Using the examples provided, I came up with the following code:

library(httr)

key &         


        
2条回答
  •  再見小時候
    2020-12-16 06:49

    The problem comes from the httr library, that uses curlEscape for encoding paramaters while the OAuth 1.0 specifications requires percent encoding (see this page).

    Replacing calls to curlEscape with curlPercentEncode solves the issue!

    many thanks to @mark-s for his help.

提交回复
热议问题