Adding In-Band Registration (XEP-0077) with Fundamental Changes #17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introduced In-Band Registration (XEP-0077) mechanism in this commit. For more information about this extension please refer to the branch named
registration
and take a look at the changes and opened issues.In this commit, there are several changes to the fundamental work structure of the
Echo
package. Prepared groundwork for documentation that will be available soon in the corresponding branch.Why This is Important:
Echo
client. This feature simplifies onboarding for new users and streamlines the registration process.Breaking:
version
variable which is the main part of the initial IQ stanza request. When testing took steps on the Ejabberd server, the server responded error stanza due to theversion
. Changed to version1.0
to make the package work properly._password
type to theString
only. Due to that was part ofScram
authentication, there was not any huge difference between passingMap
andString
to the constructor. If there will be any need for theMap
type password to the constructor dueSalted Challenge Response Authentication Mechanism
, that can be implemented in future updates.in-band registration
process. For further information, please refer to the corresponding commit.Next Steps: