created: 20240609152203076 modified: 20240614210714914 tags: title: WidgetMessage: tm-http-request Examples type: text/vnd.tiddlywiki <$let store-fetched-output="""\procedure store-fetched-output() <$action-setfield $tiddler=Output status=<> error=<> data=<> headers=<>/> \end """> <$testcase> <$data title=Description text="Simple tm-http-request GET"/> <$data title=Narrative text="""Use the oncompletion attribute to store the results of a method="GET" request"""/> <$data title=Output text=`$(store-fetched-output)$ \procedure http-get() <$action-sendmessage $message="tm-http-request" url="https://httpbin.org/get" method="GET" oncompletion=<> /> \end <$button actions=<>>send HTTP GET`/> <$testcase> <$data title=Description text="Simple tm-http-request POST"/> <$data title=Narrative text="""Use the oncompletion attribute to store the results of a method="POST" request. Use the body attribute to send data"""/> <$data title=Output text=`$(store-fetched-output)$ \procedure http-post() <$action-sendmessage $message="tm-http-request" url="https://httpbin.org/post" method="POST" body='{"foo": "bar"}' oncompletion=<> /> \end <$button actions=<>>send HTTP POST`/> <$testcase> <$data title=Description text="tm-http-request with delayed response"/> <$data title=Narrative text="""Use the bind-status and bind-progress attributes to watch the intermediate state of a slow response"""/> <$data title=Output text=`$(store-fetched-output)$ \procedure http-get() <$action-sendmessage $message="tm-http-request" url="https://httpbin.org/delay/2" bind-status=status bind-progress=progress method="GET" oncompletion=<> /> \end <$button actions=<>>send HTTP GET |!status |{{status}}| |!progress %|{{progress}}|`/> <$testcase> <$data title=Description text="tm-http-request with dripped response"/> <$data title=Narrative text="""Use the bind-status and bind-progress attributes to watch progress of data which arrives a little at a time"""/> <$data title=Output text=`$(store-fetched-output)$ \procedure http-get() <$action-sendmessage $message="tm-http-request" url="https://httpbin.org/drip?duration=2&numbytes=10&code=200&delay=2" bind-status=status bind-progress=progress method="GET" oncompletion=<> /> \end <$button actions=<>>send HTTP GET |!status |{{status}}| |!progress %|{{progress}}|`/> <$testcase> <$data title=Description text="tm-http-request 504 Bad Gateway error response"/> <$data title=Narrative text="""Send a request to a url which simulates a 504 HTTP response in order to illustrate what an error response looks like"""/> <$data title=Output text=`$(store-fetched-output)$ \procedure http-get() <$action-sendmessage $message="tm-http-request" url="https://httpbin.org/status/504" method="GET" oncompletion=<> /> \end <$button actions=<>>send HTTP GET`/> <$testcase> <$data title=Description text="tm-http-request 405 Method Not Allowed error response"/> <$data title=Narrative text="""Another error response example. This one sends a GET to a URL which only allows POST"""/> <$data title=Output text=`$(store-fetched-output)$ \procedure http-get() <$action-sendmessage $message="tm-http-request" url="https://httpbin.org/post" method="GET" oncompletion=<> /> \end <$button actions=<>>send HTTP GET`/>