我的问题与这个问题密切相关:R httr Linkedin API: Bad Request (HTTP 400)。
我在 Azure AD 中设置了一个应用程序,我想用它使用 R 从 MS Dataverse 中获取数据。我是 API 新手,所以我首先在 Postman 中设置它。我成功地在 Postman 中获取了我的数据,但它不需要 Scope 参数。
我试图重现我在 Postman in R 中所做的事情......
require(rvest)
dataverse_api = oauth_endpoint(request = NULL,
authorize = "REDACTED",
access = "REDACTED",
base_url = "REDACTED")
API.Key = "REDACTED"
API.Secret = "REDACTED"
App = oauth_app("EPS Project Development", key = API.Key, secret = API.Secret)
API.token = oauth2.0_token(dataverse_api, App)
这导致我的浏览器打开并给我一个错误,说需要一个范围。我一直在搜索文档以查找范围的命名法,但没有成功。我发现了几个文档(1、2等),它们有些外围,列出了诸如“ReadWrite.All”或“Files.ReadWrite.All”之类的选项,但我的理解是这些权限与 Scope 不同。因为我不知道自己在做什么,所以我尝试了其中的几个:
require(rvest)
dataverse_api = oauth_endpoint(request = NULL,
authorize = "REDACTED",
access = "REDACTED",
base_url = "REDACTED")
API.Key = "REDACTED"
API.Secret = "REDACTED"
App = oauth_app("EPS Project Development", key = API.Key, secret = API.Secret)
API.token = oauth2.0_token(dataverse_api, App, scope = "User_impersonation")
结果总是一样的。浏览器打开并显示一条消息Authentication complete. Please close this page and return to R.
,但在 RI 中得到:
Waiting for authentication in browser...
Press Esc/Ctrl + C to abort
Authentication complete.
Error in oauth2.0_access_token(endpoint, app, code = code, user_params = user_params, :
Bad Request (HTTP 400). Failed to get an access token.
从我上面引用的类似问题的链接中,我了解到我仍然缺少 Scope 参数。但我不知道从哪里获得 MS Dataverse 的 Scope 参数。有人能帮忙吗?