#No valid internet connection (tested using curl::has_internet()
googleway uses package CURL, i managed to set options in RCURL, but I cant define proxy arguments on CURL.
Please see issue #26 , I think this might address your issue.
Thank you, adding the argument curl_proxy ='google.com' doesn't help
I tried the following
curl_proxy <- function(url, verbose = TRUE){
h <- new_handle(verbose = verbose, proxy = myproxy, proxyauth = 8, proxyuserpwd = "username:psw")
curl(url, handle = h)
}
con <- curl_proxy("https://httpbin.org/get")
readLines(con)
google_places(search_string = "Agence societe Generale, Paris 75015",
key = key ,curl_proxy =curl_proxy("https://google.com"))
con <- curl_proxy("https://httpbin.org/get")
seems to work, but I keep receiving error
Can not retrieve results. No valid internet connection (tested using curl::has_internet(
After google_places function.
@juansecal What about simply using this approach
curl_proxy = 'google.com'
Unfortunately I can't test nor reproduce your issue, as I'm not behind any firewall.
Did it work. I also have same issue