我試圖使用Rlinkedin包建立到LinkedIn的連接。 我已按照Rlinkedin軟件包和r-bloggers鏈接中的說明進行操作。RLinkedin連接錯誤
我的代碼片段看起來是這樣的(同時發佈按鍵被隱藏):
library(Rlinkedin)
app_name <- "XXXX"
consumer_key <- "XXXX"
consumer_secret <- "XXXX"
in.auth <- inOAuth(app_name, consumer_key, consumer_secret)
my.connections <- getMyConnections(in.auth)
我已經證實了它通過瀏覽器,和我的LinkedIn應用程序頁面顯示的統計數據連接。 但是我得到一個錯誤信息如下:
Error in UseMethod("xpathApply") :
no applicable method for 'xpathApply' applied to an object of class "c('xml_document', 'xml_node')"
另外運行:
getCompany(token=in.auth, universal_name="Facebook")
結果錯誤:
Error in if (!is.na(q.content[["number(//error/status)"]] == 404)) { :
argument is of length zero
我嘗試使用the package from github爲好,但出現了同樣的問題。
我不認爲這是支持了。 LinkedIn改變了有關其API的規則。 –