Hi thomas895,
If I understand you correctly, you're suggesting something like this:
use strict;
use warnings;
use JSON;
use URI::Escape;
my $json_string = JSON::to_json($perl_structure);
print URI::Escape::uri_escape($json_string);
Output:
%7B%22sub%22%3A%7B%22name%22%3A%22foo%22%2C%22message%22%3A%22bar%22%7D%2C%22file_ids%22%3A%5B1%2C2%5D%2C%22name%22%3A%22test%20name%22%7D
So that's kind of like saying:
https://example.com/api/v1/dosomething?{"file_ids":[1,2],"name":"test name","sub":{"message":"bar","name":"foo"}}
and I need to be saying:
https://example.com/api/v1/dosomething?name=test+name&file_ids[]=1&fil
+e_ids[]=2&sub[name]=foo&sub[message]=bar
I did take a look at the URI module and I didn't see anything there...
Cheers,
Brent
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|