Open GoogleCodeExporter opened 9 years ago
issue resolved by changing from:
rt = fromJSON(postForm('https://accounts.google.com/o/oauth2/token',
refresh_token = refreshtoken,
client_id = client_id,
client_secret = client_secret,
grant_type = "refresh_token",
style = "POST" ))
# accesstoken$access_token = rt$access_token
access_token = rt$access_token
To (resolved by adding rawToChar()):
rt = fromJSON(rawToChar(postForm('https://accounts.google.com/o/oauth2/token',
refresh_token = refreshtoken,
client_id = client_id,
client_secret = client_secret,
grant_type = "refresh_token",
style = "POST" )))
# accesstoken$access_token = rt$access_token
access_token = rt$access_token
Original comment by dreyco...@gmail.com
on 21 Mar 2014 at 6:51
Original issue reported on code.google.com by
dreyco...@gmail.com
on 21 Mar 2014 at 6:32