I have enabled third party auth with my external app , Now what i want to achieve is if the user is already registered and verifieid on external app , it should automatically register that user on openedx platform when it try to sign in for the first time. The details that i get from external app does not include full name which is necessary for registration so openedx platform ultimately lands up in a web error.
I already have an idea how to reolve this error. I can add a function in social_auth_pipeline which will create full name from first name and last name.
I want suggestions on how can I resolve this issue using plugin or hook or filter.