I use the official google API framework for php,
these works for me:
$plus->people->get('444444444');
$params = array('maxResults' => 100);
$activities = $plus->activities->listActivities('444444444', 'public', $params);
but calling friends with:
$plus->people->listPeople('444444444', 'visible',array())
with the scope: https://www.googleapis.com/auth/plus.login
i am getting this error message:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "forbidden",
"message": "Forbidden"
}
],
"code": 403,
"message": "Forbidden"
}
}