ask-compu/python-twitter

How to start?

Opened this issue · 0 comments

I have the next files in google app engine folder: app.yaml, cron.yaml and 
teste.py. Here's the code of teste.py:

#!/usr/bin/python
# -*- encoding: utf-8 -*-

import twitter

minha_consumer_key = '' 
minha_consumer_secret = ''

meu_oauth_token = ''
meu_oauth_token_secret = ''


api=twitter.Api(consumer_key        = minha_consumer_key,    \
                consumer_secret     = minha_consumer_secret, \
                access_token_key    = meu_oauth_token,       \
                access_token_secret = meu_oauth_token_secret)



status = api.PostUpdate('cachorro')

I've deployed the files, but the error 500 appear.
There's something wrong? There's another file to put inside google app engine 
folder?

Sorry my bad english.

Original issue reported on code.google.com by cleyt00n...@gmail.com on 21 Aug 2012 at 2:13