dineshoctal
Results
1
comments of
dineshoctal
I use to like this and it's working public function GetUserCalendarTimezone($access_token) { $url_settings = 'https://www.googleapis.com/calendar/v3/users/me/settings/timezone'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url_settings); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '. $access_token));...