Dialog with server
Now that we have connected to the server, we can talk to the server through the socket opened previously. For example, we want to get the last 10 articles from a news group. RFC977 indicates that the first step is to use the GROUP command to select the correct newsgroup:
GROUP ggg
The ggg parameter is the name of the newsgroup to be selected (for example, "net. news"), which is required. You can use the LIST command to obtain the LIST of available newsgroups. After the newsgroup command is selected, the number of the first and last articles in the group and the number of articles in the group are returned.
The following is an example:
Chrome :~ $ Telnet my. news. host 119
Trying aa. bb. cc. dd...
Connected to my. news. host.
Escape character is '^]'.
200 my. news. host InterNetNews NNRP server INN 2.2.2 13-Dec-1999 ready (posting OK ).
GROUP alt. test
211 232 222996 223235 alt. test
Quit
205.
After receiving the Command GROUP alt. test, the server returns "211 232 222996 223235 alt. test". 211, which is the return code defined in RFC, indicating that the command has been successfully executed. The returned information also indicates that there are currently 232 articles. The first article number is 222996, and the latest article number is 223235. We can see that 222996 + 232 is not equal to 223235. The 7 Lost articles were deleted from the server for some reason, probably because they were canceled by its legal author (this is possible and easy to do ), or, it is deleted because it is a sprinkling article.
Note that some servers may require authentication before selecting a newsgroup, depending on whether it is a public or private server. It is also possible that the server allows anyone to read articles, but the post requires authentication.
<? Php
// $ Login User = "xxxxxx ";
// $ CfgPasswd = "yyyyyy ";
$ Optional newsgroup = "alt. php ";
// Identification required on private server
If ($ Login User ){
Fputs ($ usenet_handle, "authinfo user". $ your USER. "n ");
$ Tmp = fgets ($ usenet_handle, 1024 );
Fputs ($ usenet_handle, "authinfo pass". $ cfgPasswd. "n ");
$ Tmp = fgets ($ usenet_handle, 1024 );
// Check error
If ($ tmp! = "281 Okrn "){
Echo "502 Authentication errorn ";
Exit ();
}
}
// Select newsgroup
Fput ($ usenet_handle, "GROUP". $ using newsgroup. "n ");
$ Tmp = fgets ($ usenet_handle, 1024 );
If ($ tmp = "480 Authentication required for commandrn "){
Echo $ tmp;
Exit ();
}
$ Info = split ("", $ tmp );
$ First = $ info [2];
$ Last = $ info [3];
Printf ("First: % sn", $ first );
Printf ("Last: % lastn", $ last );
?>