php - google-sheets api not triggering onEdit function in google sheets -




i'm using php write data google sheets. however, trigger onedit function on google sheets isn't firing when data written php. here's piece of code used write down data:

$body = new google_service_sheets_valuerange(array('values' => $resultarraygen)); $params = array('valueinputoption' => $valueinputoption); $range = 'main!f2:k'; $result = $service->spreadsheets_values->update($spreadsheetid, $range, $body, $params); 

is there anyway use google services sheets api trigger onedit function in google spreadsheets?

thanks





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -