0

我有为 gmail 工作的宝石。我可以看到联系人列表

@contacts = request.env['omnicontacts.contacts']

但是,通过 hotmail 导入时,列表为空。我确保我确实有 hotmail 联系人。我仔细检查了我的live应用程序中的每个设置(密钥,域......)

有没有人有类似的问题?我可以尝试进一步诊断什么?

我的回调控制器:

class Oauth::HotmailController < ApplicationController

  def callback_token
    #this is called.

    #This is empty. When using gmail, contacts are retrieved. But not with hotmail
    @contacts = request.env['omnicontacts.contacts']
  end

end
4

1 回答 1

0

在您从 hotmail 的回复中,您已对电子邮件进行了编码。例如:"email_hashes":["243c01e30cfdbc8c46b8dddb68a685bb8f86016096fd3398919ed6845fde6b7b"]

这个补丁应该有帮助: https ://gist.github.com/clouw/5871254

于 2013-07-19T13:05:50.080 回答