× 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.



You need to register a "add additional header" callback procedure:

// HTTPAPI: Enables additional headers
http_xproc(HTTP_POINT_ADDL_HEADER
: %paddr('addMyHeaders')
: *null);

In the callback procedure build a string containing the key/value pairs of your additional headers:

*
* =====================================================================
* Add my special headers.
* =====================================================================
P addMyHeaders...
P B
D PI
D o_addlHdrs 1024A varying
D i_pUserData * value
*
* User Data
D CRLF C x'0D25'
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/free

o_addlHdrs = 'name1' + ':' + 'value1' + CRLF;
o_addlHdrs += 'name2' + ':' + 'value2' + CRLF;

/end-free
P E

Thomas.

-----Ursprüngliche Nachricht-----
Von: RPG400-L [mailto:rpg400-l-bounces@xxxxxxxxxxxxxxxxxx] Im Auftrag von john erps
Gesendet: Freitag, 31. Januar 2020 13:35
An: RPG programming on IBM i
Betreff: HTTPLIB Authorization Bearer

Hi All,

I'm using HTTPLIB and i need to add the following header:

Authorization: Bearer <token>

Is this supported? And how do i set it?

Thanks in advance

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.