in reply to Salesforce Data Parser

Hi bigdatageek, I just wondered if you had seen RFC: App::SFDC.

Update: fixed link
The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^2: Salesforce Data Parser
by ali0sha (Sexton) on Aug 26, 2015 at 15:42 UTC

    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;
Re^2: Salesforce Data Parser
by bigdatageek (Novice) on Aug 06, 2015 at 19:13 UTC
    I did not come across that, interesting.. thanks for the link always good to know of multiple options!

      ali0sha is around here all the time and actively working on that code I believe. Maybe you all could have a meeting of the minds.

      The way forward always starts with a minimal test.
        awesome, sent a PM, thanks!