I’m creating a web page with a Google Map, picking up several thousand markers from an SQL database. Currently the map will only display when I keep the number of markers down below about 250. Above that, the map simply won’t load. Note in the following line is the SQL statement used to restrict the ..
Category : google-api
I would like to be able to setup google calendar push notifications in my local. Google calendar documentation requires domain registration https://developers.google.com/calendar/v3/push#registering-your-domain. I would like to know if there is any workaround to make this work in the local environment using a virtual host accessible only in my local machine. If that’s impossible I would ..
I do this steps: Take token from https://oauth2.googleapis.com/token using auth code Its success and shows me access_token, expires_in, refresh_token and etc Then i use it to check with API opening https://www.googleapis.com/oauth2/v3/userinfo?access_token=xxx All works perfect. I see my information. Then i revoke token with https://oauth2.googleapis.com/revoke and get success answer with 200 code Try again step 3, ..
estoy queriendo utilizar la API de Google My Business accediendo a los negocios a través de una cuenta de servicio de la API. Lo que respecta a la autenticación con las claves de la cuenta de servicio he logrado hacerlo. El problema surge cuando quiero ligar negocios a esta cuenta para así acceder a los ..
I know many post already talk about this but I’ve tried everything and I think nothing worked. I use Google API for connection to a website and after to manage Google drive with API and Google library in PHP. The thing is pretty simple I’ve got an issue with curl error 60, so I’ve checked ..
i use oauth 2.0 and openidConnect in php with google library, i’ve already got a curl error 60 for certificate but it is now fixed with the command ‘verify’ => __DIR__ . ‘/cacert.pem’ now i’m trying to manage my google drive, so i have another page, the code is complete, just to show me my ..
I would like to see the email and the profile name of the user currently logged in and authenticated in my WebApp. The backend of my app is in PHP and I am currently using the offical google API PHP client library and gets access to the Google Drive account of the user. In order ..
I am learning to build a Login via Google button on my Joomla website, and I am following instruction on https://developers.google.com/identity/protocols/oauth2/web-server. A little background: I am using a third party extension to handle social login. Its facebook login works well, but its google login is outdated, still trying to connect to Google Plus endpoints. Clicking ..
I’m new to this API and currently trying to send email by Gmail. I have Laravel installed and required by composer google/apiclient:"^2.7". That’s how I call create message and send functions $message = $this->googleApi->createMessage($user->name, $user->email, ‘An email’, $text); $client = new Google_Client(); $service = new Google_Service_Gmail($client); $userId = ‘my-google-id.apps.googleusercontent.com’ $sendMessage = $this->googleApi->sendMessage($service, $userid, $message); class ..
I’m new to this API and currently trying to send email by Gmail. I have Laravel installed and required by composer google/apiclient:"^2.7". That’s how I call create message and send functions $message = $this->googleApi->createMessage($user->name, $user->email, ‘An email’, $text); $client = new Google_Client(); $service = new Google_Service_Gmail($client); $userId = ‘my-google-id.apps.googleusercontent.com’ $sendMessage = $this->googleApi->sendMessage($service, $userid, $message); class ..