in reply to Re: Salesforce Data Parser
in thread Salesforce Data Parser

Hey 1nickt, thanks for the shoutout!

bigdatageek: TIMTOWTDI

use strict; use warnings; use WWW::SFDC; use Data::Dumper; my @names = map {m'objects/(.*).object'} WWW::SFDC->new( username => ..., password => ..., url => 'https://login.salesforce.com' )->Metadata->listMetadata({type => 'CustomObject'}); print Dumper \@names;