Cut the Clutter: Test Ignore Files Feature - sign up to become a beta tester here.
Forum Discussion
Mark L.45
10 years agoCollaborator | Level 9
Parsing CURL output [which is in JSON of course]
Use a JSON parser, I found the answer! stupid me.
1 Reply
Replies have been turned off for this discussion
- Mark L.4510 years agoCollaborator | Level 9
Here is a more complete answer, in perl of course since I am a pathological extended rubbish lister fan.
#!/usr/bin/perl
# from file content
use JSON;
use Data::Dumper;
open( my $fh, '<', 'json.data' );
$json_text = <$fh>;
$perl_scalar = decode_json( $json_text );
print Dumper $perl_scalar;
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,039 PostsLatest Activity: 13 hours ago
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!