해들리의 R google Oauth2.0 데모를 따라 퓨전 테이블에 액세스 할 때 새로 고침 토큰을 사용할 수 없습니다.R httr Google 데모로 Oauth 2.0 새로 고침 토큰 검색
데모 : 수정 "오프라인"시도의 https://github.com/hadley/httr/blob/master/demo/oauth2-google.r
예 : 새로 고침 토큰을 검색하는 방법에 대한 방향이 많이 감사합니다
google_token <- oauth2.0_token(oauth_endpoints("google"), myapp,
scope = "https://www.googleapis.com/auth/fusiontables",
type= "offline",
use_oob = FALSE,
cache = TRUE)
.
업데이트 : 다음 코드를 사용하면 google_token $ credentials을 사용하여 문자열을 반환합니다. 여기에 참조 된 인증 코드입니까? https://developers.google.com/accounts/docs/OAuth2WebServer#offline
google_token <- oauth2.0_token(oauth_endpoints("google"), myapp,
scope = "https://www.googleapis.com/auth/fusiontables",
type= "access_type='offline'",
use_oob = FALSE,
cache = TRUE)
고맙습니다.