Troj_dloadr.api


 
Thread Tools Search this Thread
Special Forums Cybersecurity Malware Advisories (RSS) Troj_dloadr.api
# 1  
Old 06-16-2009
Troj_dloadr.api

Malware: TROJ_DLOADR.API

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to run an API from a script and extract fields from output of API

Hi, I need to call an API (GetUsageDetails)from inside a shell script which takes an input argument acct_nbr. The output of API will be like : <usageAccum accumId="450" accumCaptn="PM_125" inclUnits="1410.00" inclUnitsUsed="744.00" shared="true" pooled="false" prorated="false"... (1 Reply)
Discussion started by: rkrish
1 Replies
Login or Register to Ask a Question
Flickr::API::Response(3pm)				User Contributed Perl Documentation				Flickr::API::Response(3pm)

NAME
Flickr::API::Response - A response from the flickr API. SYNOPSIS
use Flickr::API; use Flickr::API::Response; my $api = new Flickr::API({'key' => 'your_api_key'}); my $response = $api->execute_method('flickr.test.echo', { 'foo' => 'bar', 'baz' => 'quux', }); print "Success: $response->{success} "; DESCRIPTION
This object encapsulates a response from the Flickr API. It's a subclass of "HTTP::Response" with the following additional keys: { 'success' => 1, 'tree' => XML::Parser::Lite::Tree, 'error_code' => 0, 'error_message' => '', } The "_request" key contains the request object that this response was generated from. This request will be a "Flickr::API::Request" object, which is a subclass of "HTTP:Request". The "sucess" key contains 1 or 0, indicating whether the request suceeded. If it failed, "error_code" and "error_message" explain what went wrong. If it suceeded, "tree" contains an "XML::Parser::Lite::Tree" object of the response XML. AUTHOR
Copyright (C) 2004, Cal Henderson, <cal@iamcal.com> SEE ALSO
Flickr::API, XML::Parser::Lite perl v5.14.2 2008-09-29 Flickr::API::Response(3pm)