read-url-with-basic-auth
1 2 read-url-with-basic-auth: func [url key] [ 3 read/custom url compose/deep [ 4 header [Authorization: (join "Basic " key)] 5 ] 6 7 ]
DZone Snippets > read-url-with-basic-auth
13391 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 read-url-with-basic-auth: func [url key] [ 3 read/custom url compose/deep [ 4 header [Authorization: (join "Basic " key)] 5 ] 6 7 ]