我使用的代码组合
http://railscasts.com/episodes/360-facebook-authentication?view=asciicast
oauth部分,并尝试将其与neo4J 集成
https://github.com/neo4jrb/neo4j
据我所知,这个gem替换了许多活动的记录片段,包括数据类型。
我正在尝试替换此代码块。他们将oauth_expires_at
设置为日期时间数据类型,我认为neo4j gem没有这种数据类型(我假设我不能使用日期类型,因为在这种情况下,活动记录被neo4j替换)。处理这个问题可能有哪些选择?
def self.from_omniauth(auth)
where(auth.slice(:provider, :uid)).first_or_initialize.tap do |user|
user.provider = auth.provider
user.uid = auth.uid
user.name = auth.info.name
user.oauth_token = auth.credentials.token
user.oauth_expires_at = Time.at(auth.credentials.expires_at)
user.save!
end
end
gem确实支持DateTime!将适当的特性添加到模型中。
class User
include Neo4j::ActiveNode
property :provider
property :uid
property :name
property :oauth_token
property :auth_expries_at, type: DateTime
end