<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.nina.chat/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=VoyArchivist</id>
	<title>NINA Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.nina.chat/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=VoyArchivist"/>
	<link rel="alternate" type="text/html" href="https://wiki.nina.chat/wiki/Special:Contributions/VoyArchivist"/>
	<updated>2026-06-26T10:44:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Login&amp;diff=3370</id>
		<title>Protocols/AOL/Midas/Login</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Login&amp;diff=3370"/>
		<updated>2020-12-06T17:39:03Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Set up the page template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL&lt;br /&gt;
|protocol=midas}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3369</id>
		<title>Protocols/AOL/Midas</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3369"/>
		<updated>2020-12-06T17:38:01Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Added link to a new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Forms]]&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Megaphone]]&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Login]]&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3367</id>
		<title>Protocols/AOL/Midas/Megaphone</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3367"/>
		<updated>2020-12-05T00:36:16Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Fixed a mistake when copying over the table from the previous API documentation for categories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL&lt;br /&gt;
|protocol=midas}}&lt;br /&gt;
&lt;br /&gt;
Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.&lt;br /&gt;
&lt;br /&gt;
== Backend Language ==&lt;br /&gt;
Megaphone is completely coded in JS or Javascript. When a user accesses AOL Desktop Gold and goes to access the chat system, Megaphone is what powers it. Megaphone is loaded in the client as a minified version of itself, this is so the file size will be smaller.&lt;br /&gt;
&lt;br /&gt;
== POST Requests ==&lt;br /&gt;
=== api/v1/categories ===&lt;br /&gt;
&lt;br /&gt;
This allows to get the chat categories available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		“locale”: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Response:&lt;br /&gt;
		A list of categories.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Response Name !! Response Description&lt;br /&gt;
|-&lt;br /&gt;
| id || UUID (identifier) of the category&lt;br /&gt;
|-&lt;br /&gt;
| name || Name of the category&lt;br /&gt;
|-&lt;br /&gt;
| locale || The language of the category&lt;br /&gt;
|-&lt;br /&gt;
| adult || Is this category an adult category?&lt;br /&gt;
|-&lt;br /&gt;
| createdAt || Created at time in milliseconds&lt;br /&gt;
|-&lt;br /&gt;
| displayName || Display name&lt;br /&gt;
|-&lt;br /&gt;
| isCreatedByAolMember || Is this category created by an AOL member?&lt;br /&gt;
|-&lt;br /&gt;
| isPrivate || Is this category private?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== api/v1/chat ===&lt;br /&gt;
&lt;br /&gt;
Gets chatrooms in a category.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		locale: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Optional request parameters:&lt;br /&gt;
		name&lt;br /&gt;
 &lt;br /&gt;
Response:&lt;br /&gt;
		A list of chatrooms.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Response Name !! Response Description&lt;br /&gt;
|-&lt;br /&gt;
| id || UUID (identifier) of the chat&lt;br /&gt;
|-&lt;br /&gt;
| categoryId || UUID (identifier) of the category that this chat has been created under&lt;br /&gt;
|-&lt;br /&gt;
| name || Name of the chat&lt;br /&gt;
|-&lt;br /&gt;
| locale || The language of the chat&lt;br /&gt;
|-&lt;br /&gt;
| adult || Is this chat an adult chat?&lt;br /&gt;
|-&lt;br /&gt;
| createdAt || Created at time in milliseconds&lt;br /&gt;
|-&lt;br /&gt;
| displayName || Display name&lt;br /&gt;
|-&lt;br /&gt;
| isCreatedByAolMember || Is this chat created by an AOL member?&lt;br /&gt;
|-&lt;br /&gt;
| isPrivate || Is this chat private?&lt;br /&gt;
|-&lt;br /&gt;
| category || Category name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3366</id>
		<title>Protocols/AOL/Midas/Megaphone</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3366"/>
		<updated>2020-12-05T00:31:24Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Added documentation for api/v1/chat&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL&lt;br /&gt;
|protocol=midas}}&lt;br /&gt;
&lt;br /&gt;
Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.&lt;br /&gt;
&lt;br /&gt;
== Backend Language ==&lt;br /&gt;
Megaphone is completely coded in JS or Javascript. When a user accesses AOL Desktop Gold and goes to access the chat system, Megaphone is what powers it. Megaphone is loaded in the client as a minified version of itself, this is so the file size will be smaller.&lt;br /&gt;
&lt;br /&gt;
== POST Requests ==&lt;br /&gt;
=== api/v1/categories ===&lt;br /&gt;
&lt;br /&gt;
This allows to get the chat categories available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		“locale”: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Response:&lt;br /&gt;
		A list of categories.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Response Name !! Response Description&lt;br /&gt;
|-&lt;br /&gt;
| id || UUID (identifier) of the category&lt;br /&gt;
|-&lt;br /&gt;
| name || Name of the category&lt;br /&gt;
|-&lt;br /&gt;
| locale || The language of the category&lt;br /&gt;
|-&lt;br /&gt;
| adult || Is this category an adult category?&lt;br /&gt;
|-&lt;br /&gt;
| createdAt || Created at time in milliseconds&lt;br /&gt;
|-&lt;br /&gt;
| displayName || Display name&lt;br /&gt;
|-&lt;br /&gt;
| isCreatedByAolMember || Is this category created by an AOL member?&lt;br /&gt;
|-&lt;br /&gt;
| isPrivate || Is this category private?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== api/v1/chat ===&lt;br /&gt;
&lt;br /&gt;
Gets chatrooms in a category.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		locale: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Optional request parameters:&lt;br /&gt;
		name&lt;br /&gt;
 &lt;br /&gt;
Response:&lt;br /&gt;
		A list of chatrooms.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Response Name !! Response Description&lt;br /&gt;
|-&lt;br /&gt;
| id || UUID (identifier) of the chat&lt;br /&gt;
|-&lt;br /&gt;
| categoryId || UUID (identifier) of the category that this chat has been created under&lt;br /&gt;
|-&lt;br /&gt;
| name || Name of the chat&lt;br /&gt;
|-&lt;br /&gt;
| locale || The language of the chat&lt;br /&gt;
|-&lt;br /&gt;
| adult || Is this chat an adult chat?&lt;br /&gt;
|-&lt;br /&gt;
| createdAt || Created at time in milliseconds&lt;br /&gt;
|-&lt;br /&gt;
| displayName || Display name&lt;br /&gt;
|-&lt;br /&gt;
| isCreatedByAolMember || Is this category created by an AOL member?&lt;br /&gt;
|-&lt;br /&gt;
| isPrivate || Is this chat private?&lt;br /&gt;
|-&lt;br /&gt;
| category || Category name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3361</id>
		<title>Protocols/AOL/Midas/Megaphone</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3361"/>
		<updated>2020-12-04T20:15:05Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Removing some information deemed not important from the responses table of the categories POST request&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.&lt;br /&gt;
&lt;br /&gt;
== Backend Language ==&lt;br /&gt;
Megaphone is completely coded in JS or Javascript. When a user accesses AOL Desktop Gold and goes to access the chat system, Megaphone is what powers it. Megaphone is loaded in the client as a minified version of itself, this is so the file size will be smaller.&lt;br /&gt;
&lt;br /&gt;
== POST Requests ==&lt;br /&gt;
=== api/v1/categories ===&lt;br /&gt;
&lt;br /&gt;
This allows to get the chat categories available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		“locale”: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Response:&lt;br /&gt;
		A list of categories.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Response Name !! Response Description&lt;br /&gt;
|-&lt;br /&gt;
| id || UUID (identifier) of the category&lt;br /&gt;
|-&lt;br /&gt;
| name || Name of the category&lt;br /&gt;
|-&lt;br /&gt;
| locale || The language of the category&lt;br /&gt;
|-&lt;br /&gt;
| adult || Is this category an adult category?&lt;br /&gt;
|-&lt;br /&gt;
| createdAt || Created at time in milliseconds&lt;br /&gt;
|-&lt;br /&gt;
| displayName || Display name&lt;br /&gt;
|-&lt;br /&gt;
| isCreatedByAolMember || Is this category created by an AOL member?&lt;br /&gt;
|-&lt;br /&gt;
| isPrivate || Is this category private?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3360</id>
		<title>Protocols/AOL/Midas/Megaphone</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3360"/>
		<updated>2020-12-04T20:13:15Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Added info about the responses of the categories POST request&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.&lt;br /&gt;
&lt;br /&gt;
== Backend Language ==&lt;br /&gt;
Megaphone is completely coded in JS or Javascript. When a user accesses AOL Desktop Gold and goes to access the chat system, Megaphone is what powers it. Megaphone is loaded in the client as a minified version of itself, this is so the file size will be smaller.&lt;br /&gt;
&lt;br /&gt;
== POST Requests ==&lt;br /&gt;
=== api/v1/categories ===&lt;br /&gt;
&lt;br /&gt;
This allows to get the chat categories available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		“locale”: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Response:&lt;br /&gt;
		A list of categories.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Response Name !! Response Description&lt;br /&gt;
|-&lt;br /&gt;
| id || UUID (identifier) of the category&lt;br /&gt;
|-&lt;br /&gt;
| name || Name of the category&lt;br /&gt;
|-&lt;br /&gt;
| locale || The language of the category&lt;br /&gt;
|-&lt;br /&gt;
| adult || Is this category an adult category?&lt;br /&gt;
|-&lt;br /&gt;
| createdAt || Created at time in milliseconds&lt;br /&gt;
|-&lt;br /&gt;
| displayName || Display name&lt;br /&gt;
|-&lt;br /&gt;
| isCreatedByAolMember || Is this category created by an AOL member? (See adult if so)&lt;br /&gt;
|-&lt;br /&gt;
| isPrivate || Is this category private?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3359</id>
		<title>Protocols/AOL/Midas/Megaphone</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3359"/>
		<updated>2020-12-04T20:01:03Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Rewording the 2nd sentence in &amp;quot;Backend Language&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.&lt;br /&gt;
&lt;br /&gt;
== Backend Language ==&lt;br /&gt;
Megaphone is completely coded in JS or Javascript. When a user accesses AOL Desktop Gold and goes to access the chat system, Megaphone is what powers it. Megaphone is loaded in the client as a minified version of itself, this is so the file size will be smaller.&lt;br /&gt;
&lt;br /&gt;
== POST Requests ==&lt;br /&gt;
=== api/v1/categories ===&lt;br /&gt;
&lt;br /&gt;
This allows to get the chat categories available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		“locale”: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Response:&lt;br /&gt;
		A list of categories.&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3358</id>
		<title>Protocols/AOL/Midas/Megaphone</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Megaphone&amp;diff=3358"/>
		<updated>2020-12-04T19:52:44Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Created page with &amp;quot;Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.  == Backend Language == Megaphone is completely cod...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Megaphone is the API and system developed in-house by AOL to be used exclusively with the chat system for AOL Desktop Gold.&lt;br /&gt;
&lt;br /&gt;
== Backend Language ==&lt;br /&gt;
Megaphone is completely coded in JS or Javascript. When a user accesses AOL Desktop Gold and goes to access the chat system, Megaphone is what powers it. Megaphone is loaded in the client as a minified version of itself, presumably so they can protect their code.&lt;br /&gt;
&lt;br /&gt;
== POST Requests ==&lt;br /&gt;
=== api/v1/categories ===&lt;br /&gt;
&lt;br /&gt;
This allows to get the chat categories available.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Request parameters:&lt;br /&gt;
		“locale”: The language that you would like results to be displayed in.&lt;br /&gt;
&lt;br /&gt;
Response:&lt;br /&gt;
		A list of categories.&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3357</id>
		<title>Protocols/AOL/Midas</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3357"/>
		<updated>2020-12-04T19:45:40Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Fixed spacing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Forms]]&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Megaphone]]&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3356</id>
		<title>Protocols/AOL/Midas</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3356"/>
		<updated>2020-12-04T19:45:17Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Added a new page link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Forms]]&lt;br /&gt;
[[Protocols/AOL/Midas/Megaphone]]&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Main_Page&amp;diff=3355</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Main_Page&amp;diff=3355"/>
		<updated>2020-12-04T02:36:21Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Linked a new section to the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the best place on Earth. You have reached the NINA Wiki for protocols, client information, and APIs that were formerly parts of AOL, ICQ, QuantumLink, CompuServe, and so on. At one time these protocols were used by AOL's AIM and ICQ products, and later discontinued, it now has had a rebirth of sorts here. &lt;br /&gt;
&lt;br /&gt;
We not only will fully document the protocols, but will maintain and update it.&lt;br /&gt;
&lt;br /&gt;
=== Want to Help? ===&lt;br /&gt;
&lt;br /&gt;
If you want to contribute to the NINA Wiki directly, you have to be a member, and so you must request an account by sending an email to [mailto:accounts@wiki.nina.bz accounts@wiki.nina.bz] with desired username and also a few words on what you have to contribute (for spam control). If accepted you will be sent a randomly generated password.&lt;br /&gt;
&lt;br /&gt;
If you want to contribute something anonymously or without registering, send it to [mailto:contribute@wiki.nina.bz contribute@wiki.nina.bz]. If anonymity is desired, state so, and after information is taken from your email it will be deleted and never archived, nor your detailed saved anywhere or revealed to anyone. &lt;br /&gt;
&lt;br /&gt;
See what kind of things we are looking for in our [[NCD|Not Currently Documented]] section. You should also check the [[Needed]], which is a list of things we are looking for which are not directly related to documentation.&lt;br /&gt;
&lt;br /&gt;
You can also [[Donate|donate]] to help with this AIM/AOL revival, because it is a full time job at this point.&lt;br /&gt;
&lt;br /&gt;
== Currently Being Worked On ==&lt;br /&gt;
* [[Protocols/OSCAR|OSCAR Protocol]]&lt;br /&gt;
** [[Protocols/OSCAR/Clients#AIM|AIM Clients]]&lt;br /&gt;
* [[Protocols/WebAPI|WebAPI]]&lt;br /&gt;
* [[Protocols/AOL|AOL Protocol]]&lt;br /&gt;
** This is for P3 and FLAP versions.&lt;br /&gt;
* [[Protocols/AOL/Midas|Midas Protocol]]&lt;br /&gt;
** This is for versions such as AOL Desktop Gold.&lt;br /&gt;
* [[Portals:AOL-Files|AOL-Files Portal]]&lt;br /&gt;
** A merger of archived/recovered AOL-Files/FDO-Files content and up to date information.&lt;br /&gt;
&lt;br /&gt;
=== Third Party Documentation ===&lt;br /&gt;
* [[Protocols/MSNP|MSNP]]&lt;br /&gt;
** [[Clients/Windows_Live_Messenger|Windows Live Messenger]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3354</id>
		<title>Protocols/AOL/Midas/Forms</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3354"/>
		<updated>2020-12-04T01:44:41Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Removing useless/previous text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== AOL Desktop Gold ==&lt;br /&gt;
Forms for AOL Desktop Gold are very different than that of regular AOL/America Online or what was also known as AOL Desktop. AOL Desktop Gold has what is called mock forms because they aren't actually anything like the old forms system that AOL had previously. These forms are simply HTML files with CSS, JS and a little bit more but they do actively interact with the client and will not work unless the HTML page is pulled from within the client.&lt;br /&gt;
&lt;br /&gt;
Certain aspects of these mock forms are not pulled from the forms directly such as server information, available chatrooms and etc. These mock forms, like AOL's actual forms system, is pulled directly from the server upon login or upon pulling it up. One concern is that renaming or adding forms can be a bit tedious as updates to the client may be required to make those changes due to the way the system has been changed.&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Forms&amp;diff=3353</id>
		<title>Protocols/AOL/Forms</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Forms&amp;diff=3353"/>
		<updated>2020-12-04T01:43:22Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: VoyArchivist moved page Protocols/AOL/Forms to Protocols/AOL/Midas/Forms&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Protocols/AOL/Midas/Forms]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3352</id>
		<title>Protocols/AOL/Midas/Forms</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3352"/>
		<updated>2020-12-04T01:43:22Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: VoyArchivist moved page Protocols/AOL/Forms to Protocols/AOL/Midas/Forms&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Forms are the structural basis of AOL and is how content is delivered. Forms are pulled directly from the server whenever you pull it up or whenever you first login (meaning the welcome AOL form). This allows for seamless changes of forms for any reason and without having to release updates for the client which could've caused major problems.&lt;br /&gt;
&lt;br /&gt;
== AOL Desktop Gold ==&lt;br /&gt;
Forms for AOL Desktop Gold are very different than that of regular AOL/America Online or what was also known as AOL Desktop. AOL Desktop Gold has what is called mock forms because they aren't actually anything like the old forms system that AOL had previously. These forms are simply HTML files with CSS, JS and a little bit more but they do actively interact with the client and will not work unless the HTML page is pulled from within the client.&lt;br /&gt;
&lt;br /&gt;
Certain aspects of these mock forms are not pulled from the forms directly such as server information, available chatrooms and etc. These mock forms, like AOL's actual forms system, is pulled directly from the server upon login or upon pulling it up. One concern is that renaming or adding forms can be a bit tedious as updates to the client may be required to make those changes due to the way the system has been changed.&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3351</id>
		<title>Protocols/AOL/Midas</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas&amp;diff=3351"/>
		<updated>2020-12-04T01:42:39Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Added a new page link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Midas/Forms]]&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3347</id>
		<title>Protocols/AOL/Midas/Forms</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3347"/>
		<updated>2020-12-04T01:16:21Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Fixing spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Forms are the structural basis of AOL and is how content is delivered. Forms are pulled directly from the server whenever you pull it up or whenever you first login (meaning the welcome AOL form). This allows for seamless changes of forms for any reason and without having to release updates for the client which could've caused major problems.&lt;br /&gt;
&lt;br /&gt;
== AOL Desktop Gold ==&lt;br /&gt;
Forms for AOL Desktop Gold are very different than that of regular AOL/America Online or what was also known as AOL Desktop. AOL Desktop Gold has what is called mock forms because they aren't actually anything like the old forms system that AOL had previously. These forms are simply HTML files with CSS, JS and a little bit more but they do actively interact with the client and will not work unless the HTML page is pulled from within the client.&lt;br /&gt;
&lt;br /&gt;
Certain aspects of these mock forms are not pulled from the forms directly such as server information, available chatrooms and etc. These mock forms, like AOL's actual forms system, is pulled directly from the server upon login or upon pulling it up. One concern is that renaming or adding forms can be a bit tedious as updates to the client may be required to make those changes due to the way the system has been changed.&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3346</id>
		<title>Protocols/AOL/Midas/Forms</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL/Midas/Forms&amp;diff=3346"/>
		<updated>2020-12-04T01:14:38Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Created page with &amp;quot;Forms are the structural basis of AOL and is how content is delivered. Forms are pulled directly from the server whenever you pull it up or whenever you first login (meaning t...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Forms are the structural basis of AOL and is how content is delivered. Forms are pulled directly from the server whenever you pull it up or whenever you first login (meaning the welcome AOL form). This allows for seamless changes of forms for any reason and without having to release updates for the client which could've caused major problems.&lt;br /&gt;
&lt;br /&gt;
== AOL Desktop Gold ==&lt;br /&gt;
Forms for AOL Desktop Gold are very different than that of regular AOL/America Online or what was also known as AOL Desktop. AOL Desktop Gold has what is called mock forms because they aren't actually anything like the old forms system that AOL had previously. These forms are simply HTML files with CSS, JS and a little bit more but they do actively interact with the client and will not work unless the HTML page is pulled from within the client.&lt;br /&gt;
&lt;br /&gt;
Certain aspects of these mock forms are not pulled from the forms directly such as server information, available chatrooms and etc. These mock forms, like AOL's actual forms system, is pulled directly from the server upon login or upon pulling it up. One concern is that renaming or adding forms can be a bit concerning as updates to the client may be required to make those changes due to the way the system has been changed.&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL&amp;diff=3345</id>
		<title>Protocols/AOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL&amp;diff=3345"/>
		<updated>2020-12-04T01:02:20Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Fixing spacing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Tokens]]&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Forms]]&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Protocols/AOL&amp;diff=3344</id>
		<title>Protocols/AOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Protocols/AOL&amp;diff=3344"/>
		<updated>2020-12-04T01:02:05Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Added a Forms link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Protocols/AOL}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Protocols/AOL/Tokens]]&lt;br /&gt;
[[Protocols/AOL/Forms]]&lt;br /&gt;
&lt;br /&gt;
[[Category:AOL]]&lt;br /&gt;
[[Category:Protocols/AOL]]&lt;br /&gt;
[[Category:Not_Currently_Documented]]&lt;br /&gt;
[[Category:Work_In_Progress]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
	<entry>
		<id>https://wiki.nina.chat/index.php?title=Main_Page&amp;diff=3343</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.nina.chat/index.php?title=Main_Page&amp;diff=3343"/>
		<updated>2020-12-04T01:01:14Z</updated>

		<summary type="html">&lt;p&gt;VoyArchivist: Renamed the statement under &amp;quot;AOL Protocol&amp;quot; link to add Gold to it&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the best place on Earth. You have reached the NINA Wiki for protocols, client information, and APIs that were formerly parts of AOL, ICQ, QuantumLink, CompuServe, and so on. At one time these protocols were used by AOL's AIM and ICQ products, and later discontinued, it now has had a rebirth of sorts here. &lt;br /&gt;
&lt;br /&gt;
We not only will fully document the protocols, but will maintain and update it.&lt;br /&gt;
&lt;br /&gt;
=== Want to Help? ===&lt;br /&gt;
&lt;br /&gt;
If you want to contribute to the NINA Wiki directly, you have to be a member, and so you must request an account by sending an email to [mailto:accounts@wiki.nina.bz accounts@wiki.nina.bz] with desired username and also a few words on what you have to contribute (for spam control). If accepted you will be sent a randomly generated password.&lt;br /&gt;
&lt;br /&gt;
If you want to contribute something anonymously or without registering, send it to [mailto:contribute@wiki.nina.bz contribute@wiki.nina.bz]. If anonymity is desired, state so, and after information is taken from your email it will be deleted and never archived, nor your detailed saved anywhere or revealed to anyone. &lt;br /&gt;
&lt;br /&gt;
See what kind of things we are looking for in our [[NCD|Not Currently Documented]] section. You should also check the [[Needed]], which is a list of things we are looking for which are not directly related to documentation.&lt;br /&gt;
&lt;br /&gt;
You can also [[Donate|donate]] to help with this AIM/AOL revival, because it is a full time job at this point.&lt;br /&gt;
&lt;br /&gt;
== Currently Being Worked On ==&lt;br /&gt;
* [[Protocols/OSCAR|OSCAR Protocol]]&lt;br /&gt;
** [[Protocols/OSCAR/Clients#AIM|AIM Clients]]&lt;br /&gt;
* [[Protocols/WebAPI|WebAPI]]&lt;br /&gt;
* [[Protocols/AOL|AOL Protocol]]&lt;br /&gt;
** This is for P3, FLAP and Gold versions.&lt;br /&gt;
* [[Portals:AOL-Files|AOL-Files Portal]]&lt;br /&gt;
** A merger of archived/recovered AOL-Files/FDO-Files content and up to date information.&lt;br /&gt;
&lt;br /&gt;
=== Third Party Documentation ===&lt;br /&gt;
* [[Protocols/MSNP|MSNP]]&lt;br /&gt;
** [[Clients/Windows_Live_Messenger|Windows Live Messenger]]&lt;/div&gt;</summary>
		<author><name>VoyArchivist</name></author>
	</entry>
</feed>