-
Notifications
You must be signed in to change notification settings - Fork 86
httpsclient recv
Chris Petersen edited this page Oct 16, 2014
·
1 revision
httpsclient-recv obtains data from an https server. Warning: This request blocks one most platforms
Parameter | Description |
---|---|
buf | u8vector to which the received data are copied |
Example 1: Please see the source of (httpsclient-test host src) for an example.
Example 2: Get front page of www.google.com
(define httpsclient:buf (##still-copy (make-u8vector 1024)))
(if (fx= (httpsclient-open "www.google.com") 1) (begin
(httpsclient-send (string->u8vector "GET / HTTP/1.0\r\nHost: www.google.com\r\n\r\n"))
(if (fx> (httpsclient-recv httpsclient:buf) 0)
(display (u8vector->string httpsclient:buf))(newline))
(httpsclient-close)
))
-
- accelerometer
- alist
- audio
- audioaux
- base64
- btle-scan
- camera
- cdb
- cgi
- config
- csv
- curl
- digest
- dmtx
- download
- eventloop
- fcgi
- fft
- generalized-arrays
- gps
- graph
- gyro
- hidapi
- hpdf
- html
- httpsclient
- hybridapp
- json
- lmdb
- ln_core
- ln_glcore
- ln_glgui
- ln_store
- localization
- localization_gui
- localnotification
- magnetometer
- mdns
- mqtt
- mqtt-store
- multitouch
- oauth
- orientation
- p256ecdsa
- png
- portaudio
- pregexp
- pressure
- prime
- pushnotification
- redcap
- rsa
- rtaudio
- rupi
- rotation
- sanestring
- scheduler
- serial
- sets
- settings
- simplexnoise
- sqlite
- ssax
- syntax-case
- timestamp
- ttf
- uiform
- url
- uuid
- vibrate
- videoplayer
- watchdog
- website
- xml
- zip