|
It is a JWT Brad.
Using this curl command on my Mac it works as expected:
curl --request GET
--url https://api.zoom.us/v2/webinars/1234567890/tracking_sources
--header 'authorization: Bearer mySecrtetCodeGoesHere'
I have also run similar code on the Mac in PHP and it works too.
I tried running the same PHP on the IBM i but have certificate issues
then. But HTTPAPI is not reporting any certificate issues and in the log I
can see the cert exchange.
On May 4, 2020, at 1:35 PM, B Stone <bvstone@xxxxxxxxx> wrote:OAuth
Is mySecrtetCodeGoesHere an oauth 2.0 token or a code?
Normally you use your secret code and credentials to exchange for an
2.0 token.wrote:
Bradley V. Stone
www.bvstools.com
GreenTools for PayPal <https://www.bvstools.com/g4pp.html>: Easily send
PayPal invoices from your IBM i applications using RPG ILE! Process
refunds, get account balances and more!
On Mon, May 4, 2020 at 12:00 PM Jon Paris <jon.paris@xxxxxxxxxxxxxx>
code:
Cross-posted to HTTPAPI and WEB400
I just coded up a basic Zoom API request - this is the basic HTTPAPI
url = 'https://api.zoom.us/v2/webinars/' +
%EditC(webinarId: 'X') +
'/tracking_sources';
headerVars.contentType = 'application/json';
headerVars.authorization = 'Bearer mySecrtetCodeGoesHere';
http_xproc( HTTP_POINT_ADDL_HEADER
: %paddr(addSpecialHeaders)
: %addr(headerVars) );
rc = http_get( url: '/tmp/result.txt' );
if rc <> 1;
http_crash();
endif;
Dcl-Proc addSpecialHeaders;
Dcl-Pi *N;
headersToAdd Varchar(32767);
vars likeds(headerVars) const;
End-Pi;
Dcl-C CRLF x'0d25';
headersToAdd = 'content-type: ' + vars.contentType + CRLF
+ 'authorization: ' + vars.authorization + CRLF;
End-Proc;
This gives me a "401 - This page requires a user-id & password" error
If I copy/paste the credentials and URL into Insomnia and test it - it
works. The user Id stuff is in the "secret key" bit.
Since I copied and pasted this stuff into insomnia from the RPG stuff I
can only assume I missed a step somewhere. But where?
As an Amazon Associate we earn from qualifying purchases.
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.