3

我正在使用omnicontacts 从gmail 导入联系人。但它只需要 99 个联系人而不是全部。这是我的代码

def contacts_callback
  @contacts = request.env['omnicontacts.contacts']
  @contacts.each do |contact|
  contact1 = current_user.contacts.new
  contact1.name = contact[:name]
  contact1.email = contact[:email]
  contact1.group = "Others"
  contact1.save(:validate => false)
end
  redirect_to "/contact"
end

我想不出问题。请帮忙。

4

2 回答 2

4

您需要在初始化程序中添加 max_contacts 选项:

importer :gmail, "xxx", "yyy", :max_results => 1000

我刚刚更新了自述文件以包含此内容。

于 2013-02-19T18:10:11.270 回答
0

解决了:)

我去了 lib/omnicontacts/importer/gmail.rb

  def initialize *args
    super *args
    @auth_host = "accounts.google.com"
    @authorize_path = "/o/oauth2/auth"
    @auth_token_path = "/o/oauth2/token"
    @scope = "https://www.google.com/m8/feeds"
    @contacts_host = "www.google.com"
    @contacts_path = "/m8/feeds/contacts/default/full"
    @max_results =  (args[3] && args[3][:max_results]) || 100
  end

我只是将@max_results 100 更改为 500。现在它可以工作了

于 2013-01-25T12:28:04.160 回答