I would like to request the implementation of XEP-0156, which specifies a method for discovering alternative XMPP connection methods through the use of the host-meta file. This feature would greatly enhance the flexibility and usability of XMPP clients by allowing them to automatically discover available connection methods.
To implement this feature, we can use the following approach:
fetch(`https://${domain}/.well-known/host-meta`)
.then((res) => res.text())
.......
Implementing this feature will:
- Improve the user experience by allowing automatic discovery of connection methods.
- Enhance interoperability with various XMPP servers that support alternative connection methods.
- Reduce the need for manual configuration by users.