Google_Sheet_Helpers::api_revoke_access()
revoke_access
Return Return
(void)
Source Source
File: src/integrations/google-sheet/helpers/google-sheet-helpers.php
public function api_revoke_access() { $gs_client = $this->get_google_client(); if ( ! $gs_client ) { return; } $response = wp_remote_post( $this->automator_api, array( 'method' => 'POST', 'body' => array( 'action' => 'revoke_access', 'access_token' => $gs_client, 'api_ver' => '2.0', 'plugin_ver' => InitializePlugin::PLUGIN_VERSION, ), ) ); delete_option( '_uncannyowl_google_sheet_settings' ); }
Expand full source code Collapse full source code View on Github