I am using Google plus Oauth in client side in a web application . I have registered and could get userinformation using the api, But When I tried to get the friend list using the following get operation, I am getting a 403 error
https://www.googleapis.com/plus/v1/people/{userid}/people/{collection}
I have set the userid
and collection
, but unfortunately I got this error
{
"error": {`enter code here`
"errors": [
{
"domain": "global",
"reason": "forbidden",
"message": "Forbidden"
}
],
"code": 403,
"message": "Access Not Configured"
}
}
Note: I have included https://www.googleapis.com/auth/plus.login
to the scope also.
Could somebody help me please, Thanks in advance