我目前正在嘗試使用此寶石http://github.com/pengwynn/linkedin。一切工作正常(即身份驗證和調用獲取配置文件的方法),除了配置文件對象只包含名字和姓氏。Rails LinkedIn gem只能從配置文件中獲取名字和姓氏
我想通過LinkedIn API獲取我自己的個人資料信息,所以必要的信息就在那裏。怎麼做?
謝謝。
我目前正在嘗試使用此寶石http://github.com/pengwynn/linkedin。一切工作正常(即身份驗證和調用獲取配置文件的方法),除了配置文件對象只包含名字和姓氏。Rails LinkedIn gem只能從配置文件中獲取名字和姓氏
我想通過LinkedIn API獲取我自己的個人資料信息,所以必要的信息就在那裏。怎麼做?
謝謝。
我剛剛發現爲了獲得更多的信息而不是名字和姓氏,需要傳遞:fields參數指定所需的字段。從網站
Link LinkedIn into your next Ruby application
例子:
# get a profile for someone found in network via ID client.profile(:id => 'gNma67_AdI', :fields => %w(first-name, last-name, headline, positions, education))
嗨,什麼是你得到的輸出?我認爲這將是XML,但我得到一個與nokogiri文檔作爲參數的LinkedIn :: Profile類....? – Angela 2011-04-24 16:25:41