Where is the Google Web Albums Service in the API Console?

I want to register the Google Web Albums API to upload an image, but I cannot see the Google Web Album data in the API Console.

Any idea?

+2


source to share


2 answers


From the "Picasa Web Albums Data API Developer Guide" under " Authorizing Requests with OAuth 2.0 ": -

Activate the Picasa Web Albums Data API in the Services pane of the Google APIs API Console. (If it is not listed in the Console, skip this step.)



The application must then request the access scope described in the following document Using OAuth 2.0 to Access Google APIs . In my case, the application will run as a service without user interaction, so the corresponding section is Service accounts .

I'll write some code when / if I get this working.

+5


source


It is true that you have not explicitly enabled the Picasa Web Albums Data API in the Google Console. However, I had a problem where my Picasa access stopped working. I've come to the conclusion that this is due to a recent change in how Google handles apps. My app was built on the old console ( https://code.google.com/apis/console ). I created a new project in a new console and used this clientId / clientSecret for my OAuth, then my picasa access started working again (no code change). Details are posted here: http://holtstrom.com/michael/blog/post/522/Google-OAuth2-with-PicasaWeb.html



+2


source







All Articles