Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to python and Google App Engine. I am currently working on a location based web application, I have used the following sample code http://code.google.com/p/latitudesample/

I was able to run the program in the localhost, however when I deploy the program and try to access the website I get an Internal Server Error Message.

I check the App Engine log file and it is as follows:

argument 2 to map() must support iteration
Traceback (most recent call last):File"/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/__init__.py", line 700, in __call__
handler.get(*groups)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/main.py", line 57, in get
self.request.host_url + OAUTH_CALLBACK_PATH, parameters)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth_webapp.py", line 28, in redirect_to_authorization_page
request_token = helper.GetRequestToken(callback_url, parameters)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth_appengine.py", line 78, in GetRequestToken
None)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth.py", line 262, in sign_request
self.build_signature(signature_method, consumer, token))
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth.py", line 266, in build_signature
return signature_method.build_signature(self, consumer, token)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth.py", line 632, in build_signature
oauth_request, consumer, token)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth.py", line 623, in build_signature_base_string
key = '%s&' % escape(consumer.secret)
File "/base/data/home/apps/s~latitudesocial/1.351807357650160822/oauth.py", line 50, in escape
return urllib.quote(s, safe='~')
File "/base/python_runtime/python_dist/lib/python2.5/urllib.py", line 1214, in quote
res = map(safe_map.__getitem__, s)
TypeError: argument 2 to map() must support iteration

I have been trying to figure this out myself, but I have made no progress so far.

I am guessing there is something wrong with line 623 in oauth.py

If you could, please help me locate the error.

    $key = '%s&' % escape(consumer.secret)

The change I've made to the main.py is:

class SetMyOauth(webapp.RequestHandler): 
    def get(self): 
        Config.set('oauth_consumer_key', 'myconsumerkey'), 
        Config.set('oauth_consumer_secret', 'myconsumersecret'), 
        self.response.out.write ("""key and secret set""") 

(Update 17/7/2011)

Upon further inquiry I came across the following error when running the debugger

C:\Python25\lib\threading.py:699: RuntimeWarning: tp_compare didn't return -1 or -2 for exception
  return _active[_get_ident()]
Exception exceptions.SystemError: 'error return without exception set' in <generator object at 0x03C41378> ignored

and it highlighted the following piece of code:

def escape(s):
    """Escape a URL including any /."""
    return urllib.quote(s, safe='~')

which is the same code that is logged in the log file.

However when I run the code in using the development server the application works fine with no errors.

share|improve this question
It looks like you're passing in a value for consumer.secret that isn't a string, but it's impossible to say without seeing the relevant source code. Can you edit the question to add it? – Nick Johnson Jul 14 '11 at 3:35
I've used the code from here code.google.com/p/latitudesample/source/browse/#hg%2Fapp – SARyan Jul 15 '11 at 19:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.