You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am developing a chat client for connecting to msn.
the problem is that msn allows only X-MESSENGER-OAUTH2 SASL mechanism authorization and
in libstrophe ,(from what is have seen in the code) supports only plain and MD5.
can u please tell how can i implement it ??
thanks in advance.. :)
The text was updated successfully, but these errors were encountered:
i am developing a chat client for connecting to msn.
the problem is that msn allows only X-MESSENGER-OAUTH2 SASL mechanism authorization and
in libstrophe ,(from what is have seen in the code) supports only plain and MD5.
can u please tell how can i implement it ??
You'll need to find the docs for that mechanism (and note that since
it's OAuth2 you'll be needing to launch or prompt people to visit a
web browser). Then to add a new mechanism to libstrophe, add code to
auth.c for handling the new mechanism, and then change _auth() to
select set up those handlers when that mechanism can be used. See: https://github.com/metajack/libstrophe/blob/master/src/auth.c#L454
hi,
i am developing a chat client for connecting to msn.
the problem is that msn allows only X-MESSENGER-OAUTH2 SASL mechanism authorization and
in libstrophe ,(from what is have seen in the code) supports only plain and MD5.
can u please tell how can i implement it ??
thanks in advance.. :)
The text was updated successfully, but these errors were encountered: