|
Scott,
This is for connecting to XPO for rate shopping and tracking.
They require a token that expires every 12 hours.
Getting the token is what I am starting with.
As far as the Auth, they want a key they provided that is around 70 char long.
Using the setAuth wants a user id and pw.
It did work with adding the header with the apikey.
Just had to move the content type as suggested.
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Scott Klement
Sent: Thursday, September 17, 2020 10:40 AM
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: Re: Postman to HTTPAPI
Hi Jerry,
Are you certain that 'Authorization: Basic' is correct, here? Normally, people do not code Authorization: Basic themselves, but instead use the
http_setAuth() procedure with HTTP_AUTH_BASIC. This will automatically do basic authentication. If you are trying to do something like a bearer token, then the type of authorization isn't normally basic.
With regards to the media type, you shouldn't manually set the content-type as you are doing. Instead, pass it in the appropriate parameter to http_req().
rc = http_req('POST'
: TokenURL
: ResponseFile
: *omit
: *omit
: FormData
: 'application/x-www-form-urlencoded');
-SK
On 9/17/2020 10:17 AM, (WalzCraft) Jerry Forss wrote:
Yep, have that in the header.--
Here is all the code:
Dcl-S FormData Varchar(100);
http_debug(*on);
ResponseFile = %Trim(Path) + 'TokenResponse.json';
Rc = http_xproc(HTTP_POINT_ADDL_HEADER : %paddr(SetHTTPHeader));
FormData = 'grant_type=password'
+ '&username=' + http_urlEncode(%Trim(XPOUserName))
+ '&password=' + http_urlEncode(%Trim(XPOPassword));
rc = http_req('POST'
: TokenURL
: ResponseFile
: *omit
: *omit
: FormData);
//
======================================================================
============== // Prototype SetHTTLHeader - Set HTTP Headers //
======================================================================
==============
Dcl-Proc SetHTTPHeader;
// ----------------------------------------------------------------------------------
// Input Parameters
//
----------------------------------------------------------------------
------------
Dcl-pi *N;
Headers VarChar(1024);
End-pi;
// ----------------------------------------------------------------------------------
// Local Parameters
//
----------------------------------------------------------------------
------------
// ----------------------------------------------------------------------------------
// Data Structures
//
----------------------------------------------------------------------
------------
// ----------------------------------------------------------------------------------
// Mainline
//
----------------------------------------------------------------------
------------
Headers = 'Authorization: Basic ' + %Trim(APIKey) + CRLF +
'Content-Type: application/x-www-form-urlencoded' + CRLF;
End-Proc;
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of
Charles Wilt
Sent: Thursday, September 17, 2020 10:10 AM
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: Re: Postman to HTTPAPI
You need to use `application/x-www-form-urlencoded'
Same as curl was...
Charles
On Thu, Sep 17, 2020 at 9:03 AM (WalzCraft) Jerry Forss < JForss@xxxxxxxxxxxxx> wrote:
Got this to compile so good there. Thank You.--
Still getting the 415 Unsupported Media Type error.
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of
Kevin Bucknum
Sent: Thursday, September 17, 2020 8:29 AM
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: Re: Postman to HTTPAPI
I'm not sure where json comes into this? That curl request doesn't
appear to use any json. I think what you want is something like example 4.
// set headers and auth like you already did. ( I don't see where you
set the auth however )
formdata = 'grant_type=password'
+ '&username=' + http_urlEncode(%Trim(XPOUserName))
+ '&password=' + http_urlEncode(%Trim(XPOPassword));
rc = http_req('POST'
: TokenURL
: ResponseFile
: *omit
: *omit
: formdata);
On Thu, 2020-09-17 at 13:05 +0000, (WalzCraft) Jerry Forss wrote:
I am wondering if it is because the postman has =.
I changed it to:
yajl_genOpen(*On);
yajl_beginObj();
yajl_addChar('grant_type=password');
yajl_addChar('username=' + %Trim(XPOUserName));
yajl_addChar('password=' + %Trim(XPOPassword));
yajl_endObj();
The resulting json looks like
{
"grant_type=password": "username=ourUser",
"password=Ourpassword"
}
Why the :?
-----Original Message-----
From: RPG400-L <
<mailto:rpg400-l-bounces@xxxxxxxxxxxxxxxxxx>
rpg400-l-bounces@xxxxxxxxxxxxxxxxxx
On Behalf Of (WalzCraft) Jerry ForssSent: Thursday, September 17, 2020 7:39 AM
To:
<mailto:rpg400-l@xxxxxxxxxxxxxxxxxx>
rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: Postman to HTTPAPI
Hi All,
I am trying to figure out how to map what postman is doing to httpapi.
Postman code
curl --location --request POST '
<https://api.ltl.xpo.com/token'>
https://api.ltl.xpo.com/token'
\ --header 'Authorization: Basic &ourapikey&' \ --header 'Content-Type:
application/x-www-form-urlencoded' \ --data-urlencode 'grant_type=password'
\ --data-urlencode 'username=&ourusername&' \ --data-urlencode
'password=&outpassword&'
Rpg code
RequestFile = %Trim(Path) + 'TokenRequest.json';
ResponseFile = %Trim(Path) + 'TokenResponse.json';
Rc = http_xproc(HTTP_POINT_ADDL_HEADER : %paddr(SetHTTPHeader));
// Build json Request
yajl_genOpen(*On);
yajl_beginObj();
yajl_addChar('grant_type' : 'password');
yajl_addChar('username' : %Trim(UserName));
yajl_addChar('password' : %Trim(Password));
yajl_endObj();
yajl_saveBuf(RequestFile : EMsg);
yajl_genClose();
http_setCCSIDs( 1208: 0 );
rc = http_post_stmf( TokenURL
: RequestFile
: ResponseFile
: HTTP_TIMEOUT
: HTTP_USERAGENT
: 'application/x-www-form-urlencoded');
From SetHTTPHeader
Headers = 'Authorization: Basic ' + %Trim(APIKey) + CRLF +
'Content-Type: ' + 'application/x-www-form-urlencoded' +
CRLF;
This gives error 400 Bad Request
Changing 'application/x-www-form-urlencoded'); to
'application/json'); or commenting out that line
This gives error 415 Unsupported Media Type What am I doing wrong?
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change
specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and
privileged information that is protected by law. The information
contained herein is transmitted for the sole use of the intended recipient(s) and should "only"
pertain to "WalzCraft" company matters. If you are not the intended
recipient or designated agent of the recipient of such information,
you are hereby notified that any use, dissemination, copying or
retention of this email or the information contained herein is
strictly prohibited and may subject you to penalties under federal
and/or state law. If you received this email in error, please notify
the sender immediately and permanently delete this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748
<http://www.walzcraft.com<http://www.walzcraft.com>>
www.walzcraft.com<http://www.walzcraft.com>
Phone: 1-800-237-1326
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post
a message email:
<mailto:RPG400-L@xxxxxxxxxxxxxxxxxx>
RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
<https://lists.midrange.com/mailman/listinfo/rpg400-l>
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email:
<mailto:RPG400-L-request@xxxxxxxxxxxxxxxxxx>
RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
<https://archive.midrange.com/rpg400-l>
https://archive.midrange.com/rpg400-l
.
Please contact
<mailto:support@xxxxxxxxxxxxxxxxxxxx>
support@xxxxxxxxxxxxxxxxxxxx
for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our
affiliate
link:
<https://amazon.midrange.com>
https://amazon.midrange.com
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change
specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and
privileged information that is protected by law. The information
contained herein is transmitted for the sole use of the intended recipient(s) and should "only"
pertain to "WalzCraft" company matters. If you are not the intended
recipient or designated agent of the recipient of such information,
you are hereby notified that any use, dissemination, copying or
retention of this email or the information contained herein is
strictly prohibited and may subject you to penalties under federal
and/or state law. If you received this email in error, please notify
the sender immediately and permanently delete this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748
<http://www.walzcraft.com<http://www.walzcraft.com>>
www.walzcraft.com<http://www.walzcraft.com>
Phone: 1-800-237-1326
[https://www.medtronsoftware.com/img/MedtronMinilogo.bmp] Kevin Bucknum
Senior Programmer Analyst
MEDDATA / MEDTRON
120 Innwood Drive
Covington LA 70433
Local: 985-893-2550
Toll Free: 877-893-2550
https://www.medtronsoftware.com
CONFIDENTIALITY NOTICE
This document and any accompanying this email transmission contain
confidential information, belonging to the sender that is legally
privileged. This information is intended only for the use of the
individual or entity named above. The authorized recipient of this
information is prohibited from disclosing this information to any
other party and is required to destroy the information after its
stated need has been fulfilled. If you are not the intended
recipient, or the employee of agent responsible to deliver it to the
intended recipient, you are hereby notified that any disclosure,
copying, distribution or action taken in reliance on the contents of
these documents is STRICTLY PROHIBITED. If you have received this
email in error, please notify the sender immediately to arrange for return or destruction of these documents.
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post
a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
related questions.
Help support midrange.com by shopping at amazon.com with our
affiliate
link: https://amazon.midrange.com
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change
specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and
privileged information that is protected by law. The information
contained herein is transmitted for the sole use of the intended recipient(s) and should "only"
pertain to "WalzCraft" company matters. If you are not the intended
recipient or designated agent of the recipient of such information,
you are hereby notified that any use, dissemination, copying or
retention of this email or the information contained herein is
strictly prohibited and may subject you to penalties under federal
and/or state law. If you received this email in error, please notify
the sender immediately and permanently delete this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748
www.walzcraft.com<http://www.walzcraft.com> Phone: 1-800-237-1326
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post
a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription
related questions.
Help support midrange.com by shopping at amazon.com with our
affiliate
link: https://amazon.midrange.com
This is the RPG programming on IBM i (RPG400-L) mailing list To post a
message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe,
or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and
privileged information that is protected by law. The information
contained herein is transmitted for the sole use of the intended
recipient(s) and should "only" pertain to "WalzCraft" company matters.
If you are not the intended recipient or designated agent of the
recipient of such information, you are hereby notified that any use,
dissemination, copying or retention of this email or the information
contained herein is strictly prohibited and may subject you to
penalties under federal and/or state law. If you received this email
in error, please notify the sender immediately and permanently delete
this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748
www.walzcraft.com<http://www.walzcraft.com> Phone: 1-800-237-1326
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link: https://amazon.midrange.com
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and privileged information that is protected by law. The information contained herein is transmitted for the sole use of the intended recipient(s) and should "only" pertain to "WalzCraft" company matters. If you are not the intended recipient or designated agent of the recipient of such information, you are hereby notified that any use, dissemination, copying or retention of this email or the information contained herein is strictly prohibited and may subject you to penalties under federal and/or state law. If you received this email in error, please notify the sender immediately and permanently delete this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748
www.walzcraft.com<http://www.walzcraft.com> Phone: 1-800-237-1326
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.