views:

30

answers:

1

Hi

I using buzz-python-client. In the example:

client.build_oauth_consumer('your-app.appspot.com', 'consumer_secret')

Where can I get a consumer_secret?

+5  A: 

as docs explain:

secret (string) - Your consumer secret. This is issued to you by Google.

Official guide to registration with Google.

SilentGhost