Skip to content

Instantly share code, notes, and snippets.

@ernesto-jimenez
Created July 19, 2009 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ernesto-jimenez/149932 to your computer and use it in GitHub Desktop.
Save ernesto-jimenez/149932 to your computer and use it in GitHub Desktop.
class TestController < ApplicationController
include Tractis::IdentityVerifications
def create
valid_tractis_identity_verification!("API-KEY", params)
render :text => <<-TEXT
<pre>
Identified
Name: #{params["tractis:attribute:name"]}
eID #: #{params["tractis:attribute:dni"]}
Certificate Issuer: #{params["tractis:attribute:issuer"]}
</pre>
TEXT
rescue Tractis::InvalidVerificationError
render :text => "Verification failed"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment