I'm relatively new to Firebase and trying to develop an app which requires users to give their name and surname in sign up page. But firebase createUserWithEmail method only stores email and password. How can I add this name and surname data to my app and link them with the users? I suppose i need to use FIRStorage but in that way, only options to saving information is saving either from NSData or NSURL, how can I save my name and surname strings?
Thanks in advance!
Edit1: I suppose i was wrong, I need to use real time database rather than storage to save user data. But still I need help. I am coming from Parse and this seems complicated.