Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hi,

  • The URL is not a named argument for HTTP::Tiny request methods. It's the first positional argument.
  • Passing a Perl data structure as the content of the POST request won't work. You need to serialize it.

Try this with your real auth token:

$ perl -Mstrict -MJSON -MData::Dumper -MHTTP::Tiny -E'my $resp = HTTP: +:Tiny->new->post("https://moneybird.com/api/v2/123/external_sales_inv +oices", { headers => {Accept => "application/json", "Content-Type" => + "application/json", Authorization => "Bearer 123"}, content => to_js +on({ external_sales_invoices => { "reference" => "M-8426", "date" => +"2020-03-14", "contact_id" => 456, "details_attributes" => [ { "descr +iption" => "coffee", "price" => 2.25, "tax_rate_id" => 891 } ] } })}) +; say Dumper $resp->{content}'
(I get the following:)
$VAR1 = '{"error":"access token invalid","symbolic":{"request":"invali +d_grant"}}';

Hope this helps!


The way forward always starts with a minimal test.

In reply to Re: post JSON using HTTP::Tiny - cannot parse URL by 1nickt
in thread post JSON using HTTP::Tiny - cannot parse URL by GertMT

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-25 21:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found