我有为 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