我已经在R中创建了一个管道工API,它将调用Jira API以获取冲刺数据。到目前为止,我正在使用base64编码在API调用标头中传递用户名和密码。示例代码如下。
# Initialize the variable for authentication
credentials <- "username:password"
credentials <- base64_enc(credentials)
header_auth <- paste0("Basic ",credentials)
# Make a call to the API and fetch the data
GET(end point uri, add_headers(Authorization = header_auth), accept_json())
运行正常。但是,我想使用其他身份验证类型,而不是将用户名和密码与API调用一起传递。
还有其他方法可以通过Jira进行身份验证并获取冲刺数据吗?我既不询问客户凭证也不使用我的凭证获取数据。请帮帮我。