WTVP/Processes/Miscellaneous: Difference between revisions
(Add miscellaneous page for WTVP) |
(Add request for splash-sync) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{WTVPNav}} | |||
Documentation for miscellaneous WTVP services utilized by WebTV/MSN TV. | Documentation for miscellaneous WTVP services utilized by WebTV/MSN TV. | ||
Line 29: | Line 31: | ||
Later in the WebTV/MSN TV service's life (by 2.9 at the latest), some pages started embedding a 1x1 GIF for the sole purpose of updating the message light on the current user's box to notify them of new mail sooner, if any. On the login splash screen, it embeds an image on <code>wtv-mail:/splash-sync</code> to do this. This is another simple WTVP <code>GET</code> service that returns a 43 byte GIF with minimal headers, including the <code>wtv-mail-count</code> header to tell the box how many unread messages the current user has, and an <code>Expires</code> header. Unlike most image files retrieved from the WTVP servers, the one sent by splash-sync is encrypted. Why it's encrypted is currently unclear. | Later in the WebTV/MSN TV service's life (by 2.9 at the latest), some pages started embedding a 1x1 GIF for the sole purpose of updating the message light on the current user's box to notify them of new mail sooner, if any. On the login splash screen, it embeds an image on <code>wtv-mail:/splash-sync</code> to do this. This is another simple WTVP <code>GET</code> service that returns a 43 byte GIF with minimal headers, including the <code>wtv-mail-count</code> header to tell the box how many unread messages the current user has, and an <code>Expires</code> header. Unlike most image files retrieved from the WTVP servers, the one sent by splash-sync is encrypted. Why it's encrypted is currently unclear. | ||
<pre> | |||
GET wtv-mail:/splash-sync-wtv-token-2442596988-F4BAA3E63FAE9A29B47246A4024BF8A1\r\n | |||
Referer: wtv-head-waiter:/login-stage-two-wtv-token-3978878462-9763BA920CF00DB580F18DB8A4069C74?new_registration=1\r\n | |||
wtv-system-cpuspeed: 166164662\r\n | |||
wtv-system-sysconfig: 3116068\r\n | |||
wtv-disk-size: 8006\r\n | |||
wtv-incarnation: 14\r\n | |||
\r\n | |||
</pre> | |||
<pre> | <pre> | ||
Line 47: | Line 59: | ||
02 00 02 00 00 02 02 84 51 00 ........Q. | 02 00 02 00 00 02 02 84 51 00 ........Q. | ||
</pre> | </pre> | ||
---- | |||
It's believed that the service <code>wtv-mail:/update-light</code> performs a similar function to splash-sync. What's believed to be its response also sends a 43 byte GIF image, but the only captures we've seen of it are ones without any mail-related headers. Like splash-sync, the GIF is encrypted. | It's believed that the service <code>wtv-mail:/update-light</code> performs a similar function to splash-sync. What's believed to be its response also sends a 43 byte GIF image, but the only captures we've seen of it are ones without any mail-related headers. Like splash-sync, the GIF is encrypted. |
Latest revision as of 22:36, 10 August 2023
WTVP |
---|
Overview • List of WTVP Services • WTVP-specific Content-Types • Status Codes |
Concepts |
Tokens • Tickets • Capability Flags |
Headers |
Header List • Data Types • Common Request Headers |
Processes |
First-Time Registration • Headwaiter (Login) • Messenger Services • Favorites • Checking for new mail • Retrieving settings • Obtaining new wtv-tickets • Smart Card • Miscellaneous |
URLs for WTVP Services |
wtv-1800 • wtv-aroundtown • wtv-author • wtv-center • wtv-chat • wtv-content • wtv-cookie • wtv-customscript • wtv-disk • wtv-epguide • wtv-favorite • wtv-flashrom • wtv-guide • wtv-head-waiter • wtv-home • wtv-intro • wtv-log • wtv-mail • wtv-news • wtv-notices • wtv-partner • wtv-passport • wtv-register • wtv-setup • wtv-smartcard • wtv-spot • wtv-star • wtv-tricks • wtv-tutorial |
Documentation for miscellaneous WTVP services utilized by WebTV/MSN TV.
Address list
Simple WTVP GET
service hosted on a service URL defined in the final headwaiter response with the wtv-addresses-url
header. This service is usually hosted on a wtv-mail
server, and the original service URL used to host the service was wtv-mail:/addresslist
. This service returns a list of contacts in a user's address book, listing both the nickname and e-mail address for each contact. This service is called after the client receives the final headwaiter response during login, or when a user pulls up the Send panel from the Options bar to let them choose which contacts to send a page to through the WebTV/MSN TV Mail service.
The response has a Content-Type of x-wtv-addresses
, and the body consists of one or more NUL-terminated string sequences that follow this format: [Contact nickname][0x00][Contact e-mail address][0x00]
GET wtv-mail:/addresslist\r\n wtv-system-cpuspeed: 166164662\r\n wtv-system-sysconfig: 3116068\r\n wtv-disk-size: 8006\r\n wtv-incarnation: 4\r\n \r\n
200 OK\n Connection: Keep-Alive\n wtv-encrypted: true\n Content-Type: x-wtv-addresses\n Content-length: {length of body}\n \n John Doe[0x00]johndoe@webtv.net[0x00]Jane Doe[0x00]janedoe@webtv.net[0x00]Joe Britt[0x00]joeb@webtv.net[0x00]
Mail sync service
Later in the WebTV/MSN TV service's life (by 2.9 at the latest), some pages started embedding a 1x1 GIF for the sole purpose of updating the message light on the current user's box to notify them of new mail sooner, if any. On the login splash screen, it embeds an image on wtv-mail:/splash-sync
to do this. This is another simple WTVP GET
service that returns a 43 byte GIF with minimal headers, including the wtv-mail-count
header to tell the box how many unread messages the current user has, and an Expires
header. Unlike most image files retrieved from the WTVP servers, the one sent by splash-sync is encrypted. Why it's encrypted is currently unclear.
GET wtv-mail:/splash-sync-wtv-token-2442596988-F4BAA3E63FAE9A29B47246A4024BF8A1\r\n Referer: wtv-head-waiter:/login-stage-two-wtv-token-3978878462-9763BA920CF00DB580F18DB8A4069C74?new_registration=1\r\n wtv-system-cpuspeed: 166164662\r\n wtv-system-sysconfig: 3116068\r\n wtv-disk-size: 8006\r\n wtv-incarnation: 14\r\n \r\n
200 OK\n Connection: Keep-Alive\n wtv-encrypted: true\n wtv-mail-count: {number of unread emails in user's inbox}\n Expires: 60\n Content-type: image/gif\n Content-length: 43\n \n {GIF image data}
47 49 46 38 39 61 02 00 02 00 80 00 00 2B 2B 2B GIF89a....€..+++ 00 00 00 21 F9 04 01 00 00 00 00 2C 00 00 00 00 ...!ù......,.... 02 00 02 00 00 02 02 84 51 00 ........Q.
It's believed that the service wtv-mail:/update-light
performs a similar function to splash-sync. What's believed to be its response also sends a 43 byte GIF image, but the only captures we've seen of it are ones without any mail-related headers. Like splash-sync, the GIF is encrypted.
200 OK\n Connection: Keep-Alive\n wtv-encrypted: true\n Content-type: image/gif\n Content-length: 43\n \n {GIF image data}