2

I am trying to import all my AOL Email contacts in my web application. For that I am using cardmagic gem given at

I forked the code & replaced following code

AOL_NUM = "29970-343" # this seems to change each time they change the protocol

CONTACT_LIST_URL = "http://webmail.aol.com/#{AOL_NUM}/aim-2/en-us/Lite/ContactList.aspx?folder=Inbox&showUserFolders=False"

CONTACT_LIST_CSV_URL = "http://webmail.aol.com/#{AOL_NUM}/aim-2/en-us/Lite/ABExport.aspx?command=all"

with

AOL_NUM = "32992-111" # this seems to change each time they change the protocol

CONTACT_LIST_URL    = "http://mail.aol.com/#{AOL_NUM}/aol-6/en-us/Lite/ContactList.aspx?folder=Inbox&showUserFolders=False"

CONTACT_LIST_CSV_URL = "http://mail.aol.com/#{AOL_NUM}/aol-6/en-us/Lite/ABExport.aspx?command=all"

Still I am getting error

CSV::IllegalFormatError: CSV::IllegalFormatError

Is this due to outdated AOl_NUM? or are there any more changes in the aol.rb? Thank you.

mandar.gokhale
  • 1,876
  • 1
  • 18
  • 37

1 Answers1

1

I believe it should work. Did you perform update bundle after including the gem? perform bundle update and restart your server.

Bongs
  • 5,502
  • 4
  • 30
  • 50