I am making a call to the google indexing API for job postings: When making the call to the API, the response given is ‘403 – Forbidden’ . Any ideas what this error actually means? I have created the service account correctly but cannot replicate success from my dev enviroment. Answer Make sure that you have added the service account
Tag: google-api-php-client
How to set the color of a Google Calendar that was created via the API
I’m using the google calendar API with PHP. I know how to create a new calendar, but how do I set the color of the calendar I’ve created? I’ve been searching for hours. I’ve tried I’ve tried both of which are undefined methods. I found documentation on how to modify the color definitions. And sent the color of an event
google analytics api v4 using PHP. Ordering output
I have this code on google analytics API v4 with PHP. $eCPM_Adsense = new Google_Service_AnalyticsReporting_Metric(); $eCPM_Adsense->setExpression(“ga:adsenseECPM”); $eCPM_Adsense->…
Determine if YouTube video is widescreen?
I would like to know with certainty if a YouTube video is widescreen or not using the v3 API. There are many old videos that have a 4:3 ratio, so I need to detect this. This was possible with API v2, …