1
我有一個表格,它有4個數據..谷歌電子表格API和Codeigniter
現在我收到$ _POST的數據。我想把它放到谷歌電子表格使用他們的API ..但我太新手瞭解代碼..
我只是achived把谷歌客戶端API codeigniter,但我不知道如何使用它。
我的代碼是這個樣子..
$this->load->library('google');
$values = array(
array(
$this->input->post('name'),
$this->input->post('email'),
$this->input->post('reason'),
$this->input->post('mobile'),
date('Y-m-d')
)
);
$body = new Google_Service_Sheets_ValueRange(array(
'values' => $values
));
// $params = array(
// 'valueInputOption' => $valueInputOption
//);
$result = $this->google->spreadsheets_values->update("1gg8rHsKM3DhMaJVY-YexQyggAoq1pUCB5LpP5NFah8A", "Sheet1!A2:E2", $body, "");
我不知道是什麼的參數是用於,所以我留空白..
我運行此代碼,並得到錯誤Message: Undefined property: Google::$spreadsheets_values