in reply to Google Provisioning API - method not found
From a short look at the code, it seems that VUser::Google::ProvisioningAPI is a factory for either VUser::Google::ProvisioningAPI::V1_0 or VUser::Google::ProvisioningAPI::V2_0 objects. You could try to find out what kind of object you got back by printing ref:
print ref $gmail;
Maybe you have an older version of the module loaded?
print $VUser::Google::ProvisioningAPI::VERSION; require VUser::Google::ProvisioningAPI::V2_0; print $VUser::Google::ProvisioningAPI::V2_0::VERSION;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Google Provisioning API - method not found
by McDarren (Abbot) on Jul 23, 2008 at 13:01 UTC |