我有一个使用 koala 的方法,它可以获取通过 facebook 注册我的应用程序的用户的所有联系人。
如果我“实时”运行它,它就可以工作。不过要等很久,所以我推迟了。
问题是,当使用延迟作业运行它时,它只检索一个联系人,而不是完整列表。
以前有人遇到过这个问题吗?
这是代码
在会话中#create
service = Service.from_omniauth(env["omniauth.auth"])
service.delay.get_contacts if Rails.env.production?
service.rb 中的 get_contacts 函数
def get_contacts(network_size = 10)
@graph = Koala::Facebook::API.new(token).get_connections("me", "friends")
saved_contacts = user.friendships.count - 1
total_contacts = @graph.count
if total_contacts - saved_contacts > 0
connections = @graph[saved_contacts..-1]
else
connections = nil
end
if !connections.nil?
connections.each do |hash|
Service.where(:provider => 'facebook', :uid => hash['id']).first_or_initialize.tap do |contact|
contact.provider = 'facebook'
contact.uid = hash['id']
contact.save!
Relationship.where(:user_id => user, :contact_id => contact).first_or_create
end
end
end