Odesk获得经过身份验证的用户收入

时间:2015-03-22 18:31:26

标签: ruby-on-rails odesk

有任何获取收入信息的例子 在Rails中odesk认证用户?怎么实现这个? 我使用odesk-api gem

1 个答案:

答案 0 :(得分:0)

我通过此

检索的所有必要数据
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)