×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
HTTP_POST is url, message, options
The options are set as JSON entries in the options string. See
https://www.ibm.com/docs/en/i/7.5?topic=functions-http-get-http-get-blob#rbafzscahttpget__HTTP_options
Try sending the message elements as JSON also ... use the url encoding functions in SQL to encode the actual data first ... then your
- data-urlencode 'grant_type=client_credentials'\
-- data-urlencode 'client_id=<client_id>'\
-- data-urlencode 'client_secret=<client_secret>'
becomes the second arg to HTTP_POST:
'{"grant_type": "client_credentials", "client_id": "client_id", "client_secret": "client_secret"}'
I think ... don't have time to test right now ... let us know if you have problems.
________________________________
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> on behalf of Jay Vaughn <jeffersonvaughn@xxxxxxxxx>
Sent: Monday, July 15, 2024 10:00 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: Re: http_post equivalent of curl example
Errr.
I'm consuming an API in which I need to supply these parameter values to
the PROVIDER (I'm the consumer).
As an Amazon Associate we earn from qualifying purchases.