I have a question about Google APIs. My goal is to post status to our Google+ company page from server. So it has to be server-side, completely.
I saw hundreds of pages from Google documentation, but I don't understand it at all.
When I try to execute action "plusDomains.activities.insert" (over API Explorer), I'm getting error:
{
"error": {
"errors": [
{
"domain": "plusDomains",
"reason": "forbiddenScope",
"message": "Access to the Google+ Domains API is not allowed as the user has consented to incompatible scopes. See: https://developers.google.com/+/domains/authentication/."
}
],
"code": 403,
"message": "Access to the Google+ Domains API is not allowed as the user has consented to incompatible scopes. See: https://developers.google.com/+/domains/authentication/."
}
}
What is the reason of this error? And what user I have to use? In developers console I have 3 users and 1 full admin (my G-Apps account). What should I set as client-id and to google credentials object?
Many thanks for any advice.