You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use $listFeed = $worksheet->getListFeed(["id" => "1123456"]); to filter my data to only retrieve what I need. But it returns
[Google\Spreadsheet\Exception\UnauthorizedException]
You need permission
I have no problems reading the whole document with $listFeed = $worksheet->getListFeed(); or updating the document with `$listFeed->insert(["id" => "123451"]);
The scopes I added: $client->setScopes(['https://www.googleapis.com/auth/drive', 'https://docs.google.com/feeds']);
Am I missing a scope or something else?
Br,
The text was updated successfully, but these errors were encountered:
Hi there,
I am trying to use
$listFeed = $worksheet->getListFeed(["id" => "1123456"]);
to filter my data to only retrieve what I need. But it returnsI have no problems reading the whole document with
$listFeed = $worksheet->getListFeed();
or updating the document with `$listFeed->insert(["id" => "123451"]);The scopes I added:
$client->setScopes(['https://www.googleapis.com/auth/drive', 'https://docs.google.com/feeds']);
Am I missing a scope or something else?
Br,
The text was updated successfully, but these errors were encountered: