Unable to access api “ReportService” from Java client. Getting error Operating partner [-2] not allowed using requested partner [230] with partner group [-2]

This post was flagged by the community and is temporarily hidden.

Hello,

Please attach your code for review.
Thanks,

This post was flagged by the community and is temporarily hidden.

This post was flagged by the community and is temporarily hidden.

Hello,

I believe you need to impersonate the partner by calling setConfig() method.
In PHP this would be:
$config = new KalturaConfiguration($partnerId);
$config->serviceUrl = $service_url;
$client = new KalturaClient($config);
$config->partnerId=$partnerId;
$client->setConfig($config);

In Java should be something like:
kalturaConfiguration.partnerId=230;
kalturaClient.setConfig(kalturaConfiguration);

Can you please try?