有没有在Rails中获取odesk认证用户的收入信息的例子?如何实现这个目标?我使用odesk-api gem
发布于 2015-03-23 20:22:12
我通过这个检索到了所有必要的数据
client = get_client(token, secret) #already authenticated client
profile_url = auth.get_user_info['profile_url']
profile_key = profile_url.split('/').last
p "profile_key found: #{profile_key}"
freelancers = Odesk::Api::Routers::Freelancers::Profile.new(client)
specific_data = freelancers.get_specific(profile_key)
https://stackoverflow.com/questions/29198204
复制相似问题