I have done the what should be the first test in integrating my system into web messenger and have put the following code which i found on another section of this forum.
The role of is helping you get user's display name based on the user's UniqueName.
Before you get started, you need to understand the 'UniqueName' in CuteChat. In CuteChat, UniqueName means the unique data of your user. Depending on how you implement the user system, in some systems, the best unique data is the user ID; in some system, every user have a unique account name; some systems like MSN, the unique data is the user email. It could be string(username, email), integer(user ID) or GUID.
You can just change it to:
public string GetUserDisplayName(string useruniquename)
{
return useruniquename;
}
When you get comfortable with the integration part, then change the above code to something make sense to your system.
When i click on messenger though it tells me i need to log in. Should it not just give me a unique id?