Como criar páginas protegidas na Web em R (links https) (usando o readHTMLTable do pacote XML)?

Existem boas respostas no SO sobre como usar o readHTMLTable a partir do pacote XML e fiz isso com páginas http regulares, no entanto, não consigo resolver meu problema com páginas https.

Eu estou tentando ler a tabela neste site (url string):

library(RTidyHTML)
library(XML)
url <- "https://ned.nih.gov/search/ViewDetails.aspx?NIHID=0010121048"
h = htmlParse(url)
tables <- readHTMLTable(url)

Mas eu recebo este erro: Arquivohttps://ned.nih.gov/search/Vi...does não existe.

Eu tentei passar o problema https com isso (primeiro 2 linhas abaixo) (usando o google para encontrar a solução (como aqui:http://tonybreyal.wordpress.com/2012/01/13/r-a-quick-scrape-of-top-grossing-films-from-boxofficemojo-com/).

Esse truque ajuda a ver mais da página, mas qualquer tentativa de extrair a tabela não está funcionando. Qualquer conselho apreciado. Preciso dos campos da tabela como Organização, Título Organizacional, Gerente.

 #attempt to get past the https problem 
 raw <- getURL(url, followlocation = TRUE, cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))
 head(raw)
[1] "\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; 
...
 h = htmlParse(raw)
Error in htmlParse(raw) : File ...
tables <- readHTMLTable(raw)
Error in htmlParse(doc) : File ...

questionAnswers(3)

yourAnswerToTheQuestion