I'm trying to make a request http of a Google Plus page from a private domain. I am currently using lib requests from Python.
import requests
content = requests.get('https://plus.google.com/communities/107246698599792754395')
print content
Every time you get 404 error, as if the page did not exist. I am already a member of this community. I imagine I need some sort of authentication for access. I've tried several other libs and nothing. I also tried via Google API with OAuth2 and I did not succeed either.