0

我正在尝试使用 ROAuth 访问 fitbit API,但一直处于第一个障碍。

这是我的代码:

library(ROAuth)

reqURL <- "https://api.fitbit.com/oauth/request_token"
accessURL <- "https://api.fitbit.com/oauth/access_token"
authURL <- "https://www.fitbit.com/oauth/authorize"
cKey <- "xxxxx"
cSecret <- "xxxxx"

credentials <- OAuthFactory$new(consumerKey=cKey,
                            consumerSecret=cSecret,
                            requestURL=reqURL,
                            accessURL=accessURL,
                            authURL=authURL)
credentials$handshake()

运行它会给出以下相当神秘的错误:

Error in strsplit(response, "&") : non-character argument

任何建议,非常感谢!

4

1 回答 1

1

按照@hadley的建议,我没有解决ROAuth问题,而是转而使用该httr软件包。这个问题中的代码对我有用。

于 2013-06-05T04:14:49.900 回答