我正在使用我在网上找到的一些代码:
def person_path(options)
# This is where the path of the query is constructed.
path = "/people/" # For this section of the LinkedIn API
if id = options.delete(:id)
path += "id=#{id}"
elsif url = options.delete(:url)
path += "url=#{CGI.escape(url)}"
else
path += "~"
end
end
我不完全确定它的作用。我想做的是让它构造一个类似这样的字符串:http ://api.linkedin.com/v1/people/~:(current-status ),我从LinkedIn开发人员文档中获得:https:/ /developer.linkedin.com/documents/profile-api
关于我应该通过什么功能以及它如何完成它的功能的任何想法?
谢谢!