Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
HTTPClient
Last updated at 10:46 am UTC on 17 March 2019
  HTTPClient httpGetDocument: url

Mailing list discussion in January 2019:
HTTPClient will be deprecated.

Use WebClient instead.

Example
Instead of
 (HTTPClient httpGet: 'http://www.squeak.org/') contents.
use
 WebClient httpGet: 'http://www.squeak.org/'.
You will get a WebResponse.
 (WebClient httpGet: 'http://www.squeak.org/') content.


Notes February 2019

Change set posted to Mailing list to remove HTTPClient – Tim R. asks for review