0

I finally got an open id demo app going:

  • rails 2.3.5
  • authlogic openid

When I create a new user in the database, I get the following error:

fullname is not a defined simple registration field

This is after I authorize the localhost,etc.

I don't have fullname anywhere. Any ideas?

cbrulak
  • 15,436
  • 20
  • 61
  • 101
  • 1
    It's rather strange, since [fullname](http://openid.net/specs/openid-simple-registration-extension-1_0.html#response_format) is a defined SREG field. – Mewp Sep 22 '10 at 19:19

1 Answers1

0

Try using a string rather than a symbol. I had the same issue with the email field until I made this change.

name = registration['fullname'] # Success
name = registration[:fullname] # Fail
Paul Alexander
  • 31,970
  • 14
  • 96
  • 151