所以我一直在努力创建一个使用https://github.com/kawax/laravel-google-sheets从Google表格中提取数据的网络应用程序。
我早些时候在工作中设置了它并且工作正常。数据返回没有问题,但当我尝试将它带回本地服务器上的家用电脑时,它给了我一个我以前没见过的错误,并且我正在努力调试。
Google_Service_Exception (400)
{ "error": "invalid_scope", "error_description": "Empty or missing scope not allowed." }
当我运行这行代码时,这个问题似乎才适用:
$values = Sheets::sheet('Sheet1')->all();
该区域的整个代码是:
<?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Sheets;
use Datetime;
use Google;
Use Carbon\Carbon;
class Controller extends BaseController
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
public function test()
{
Sheets::setService(Google::make('sheets'));
Sheets::spreadsheet('1yYpNNpPPrbraIZeaoQ5v80MobkI9Nv14oLI_S2_RJhY');
$values = Sheets::sheet('Sheet1')->all();
// all() returns array
// Do stuff with data
任何帮助都将不胜感激。
答案 0 :(得分:0)
在你的config / google.php中添加(完成php工匠供应商:发布后)
'scopes' => [\Google_Service_Sheets::DRIVE, \Google_Service_Sheets::SPREADSHEETS],
然后它应该重新开始工作。